* pipe.cc (fhandler_pipe::fixup_after_fork): New method.

* fhandler.h (fhandler_pipe::fixup_after_fork): Declare new method.
This commit is contained in:
Christopher Faylor
2001-09-29 01:23:06 +00:00
parent e19332c667
commit a1dc0932f4
3 changed files with 24 additions and 4 deletions

View File

@ -452,6 +452,7 @@ public:
int close ();
void create_guard (SECURITY_ATTRIBUTES *sa) {guard = CreateMutex (sa, FALSE, NULL);}
int dup (fhandler_base *child);
void fixup_after_fork (HANDLE);
bool hit_eof ();
friend int make_pipe (int fildes[2], unsigned int psize, int mode);
};