* fhandler.h (fhandler_union): Add missing members corresponding to
fhandler_fifo and fhandler_netdrive.
This commit is contained in:
parent
721862f496
commit
29b111ce59
@ -1,3 +1,8 @@
|
|||||||
|
2005-06-17 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* fhandler.h (fhandler_union): Add missing members corresponding to
|
||||||
|
fhandler_fifo and fhandler_netdrive.
|
||||||
|
|
||||||
2005-06-16 Corinna Vinschen <corinna@vinschen.de>
|
2005-06-16 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* syscalls.cc (statvfs): Handle the case when GetDiskFreeSpaceEx
|
* syscalls.cc (statvfs): Handle the case when GetDiskFreeSpaceEx
|
||||||
|
@ -1289,7 +1289,10 @@ typedef union
|
|||||||
char __dev_tape[sizeof (fhandler_dev_tape)];
|
char __dev_tape[sizeof (fhandler_dev_tape)];
|
||||||
char __dev_zero[sizeof (fhandler_dev_zero)];
|
char __dev_zero[sizeof (fhandler_dev_zero)];
|
||||||
char __disk_file[sizeof (fhandler_disk_file)];
|
char __disk_file[sizeof (fhandler_disk_file)];
|
||||||
|
char __fifo[sizeof (fhandler_fifo)];
|
||||||
char __mailslot[sizeof (fhandler_mailslot)];
|
char __mailslot[sizeof (fhandler_mailslot)];
|
||||||
|
char __netdrive[sizeof (fhandler_netdrive)];
|
||||||
|
char __nodevice[sizeof (fhandler_nodevice)];
|
||||||
char __pipe[sizeof (fhandler_pipe)];
|
char __pipe[sizeof (fhandler_pipe)];
|
||||||
char __proc[sizeof (fhandler_proc)];
|
char __proc[sizeof (fhandler_proc)];
|
||||||
char __process[sizeof (fhandler_process)];
|
char __process[sizeof (fhandler_process)];
|
||||||
@ -1303,7 +1306,6 @@ typedef union
|
|||||||
char __tty_slave[sizeof (fhandler_tty_slave)];
|
char __tty_slave[sizeof (fhandler_tty_slave)];
|
||||||
char __virtual[sizeof (fhandler_virtual)];
|
char __virtual[sizeof (fhandler_virtual)];
|
||||||
char __windows[sizeof (fhandler_windows)];
|
char __windows[sizeof (fhandler_windows)];
|
||||||
char __nodevice[sizeof (fhandler_nodevice)];
|
|
||||||
} fhandler_union;
|
} fhandler_union;
|
||||||
|
|
||||||
struct select_record
|
struct select_record
|
||||||
|
Loading…
x
Reference in New Issue
Block a user