* dir.cc: Change __off32_t to _off_t and __off64_t to _off64_t

throughout.
	* fhandler.cc: Ditto.
	* fhandler.h: Ditto.
	* fhandler_clipboard.cc: Ditto.
	* fhandler_disk_file.cc: Ditto.
	* fhandler_dsp.cc: Ditto.
	* fhandler_floppy.cc: Ditto.
	* fhandler_mem.cc: Ditto.
	* fhandler_proc.cc: Ditto.
	* fhandler_process.cc: Ditto.
	* fhandler_random.cc: Ditto.
	* fhandler_registry.cc: Ditto.
	* fhandler_tape.cc: Ditto.
	* fhandler_termios.cc: Ditto.
	* fhandler_virtual.cc: Ditto.
	* fhandler_zero.cc: Ditto.
	* mmap.cc: Ditto.
	* pipe.cc: Ditto.
	* syscalls.cc: Ditto.
	* winsup.h: Ditto.
	* include/cygwin/stat.h: Ditto.
	* include/cygwin/types.h: Ditto.  Remove definition of __off32_t
	and __off64_t.
This commit is contained in:
Corinna Vinschen
2003-04-01 16:11:41 +00:00
parent 5340a2ed6d
commit 1727fba007
23 changed files with 178 additions and 153 deletions

View File

@@ -79,16 +79,16 @@ fhandler_dev_floppy::close (void)
return fhandler_dev_raw::close ();
}
__off64_t
fhandler_dev_floppy::lseek (__off64_t offset, int whence)
_off64_t
fhandler_dev_floppy::lseek (_off64_t offset, int whence)
{
int ret;
char buf[512];
__off64_t drive_size = 0;
__off64_t lloffset = offset;
__off64_t current_position;
__off64_t sector_aligned_offset;
__off64_t bytes_left;
_off64_t drive_size = 0;
_off64_t lloffset = offset;
_off64_t current_position;
_off64_t sector_aligned_offset;
_off64_t bytes_left;
DWORD low;
LONG high = 0;
@@ -142,7 +142,7 @@ fhandler_dev_floppy::lseek (__off64_t offset, int whence)
__seterrno ();
return -1;
}
current_position = low + ((__off64_t) high << 32);
current_position = low + ((_off64_t) high << 32);
if (is_writing)
current_position += devbufend - devbufstart;
else
@@ -195,8 +195,8 @@ fhandler_dev_floppy::ioctl (unsigned int cmd, void *buf)
DISK_GEOMETRY di;
PARTITION_INFORMATION pi;
DWORD bytes_read;
__off64_t drive_size = 0;
__off64_t start = 0;
_off64_t drive_size = 0;
_off64_t start = 0;
switch (cmd)
{
case HDIO_GETGEO:
@@ -271,7 +271,7 @@ fhandler_dev_floppy::ioctl (unsigned int cmd, void *buf)
if (cmd == BLKGETSIZE)
*(long *)buf = drive_size >> 9UL;
else
*(__off64_t *)buf = drive_size;
*(_off64_t *)buf = drive_size;
return 0;
}
case BLKRRPART: