* fhandler.h (class fhandler_pipe): New ioctl() method.

* pipe.cc (fhandler_pipe::ioctl): New.
This commit is contained in:
Christopher Faylor
2002-11-09 03:17:40 +00:00
parent 7c4f9b9a05
commit 49f7ea1675
3 changed files with 34 additions and 0 deletions

View File

@ -459,6 +459,7 @@ class fhandler_pipe: public fhandler_base
int close ();
void create_guard (SECURITY_ATTRIBUTES *sa) {guard = CreateMutex (sa, FALSE, NULL);}
int dup (fhandler_base *child);
int ioctl (unsigned int cmd, void *);
void fixup_after_fork (HANDLE);
bool hit_eof ();
void set_eof () {broken_pipe = true;}