diff options
author | Christopher Faylor <me@cgf.cx> | 2001-09-29 01:23:06 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-09-29 01:23:06 +0000 |
commit | a1dc0932f42604d6bd51ebf13f668e8e6debf409 (patch) | |
tree | 72da95ada5c8d6b1956697021dfff362e4e64351 /winsup/cygwin/fhandler.h | |
parent | e19332c6677f4e1a41387102ded9010a2b99229f (diff) | |
download | cygnal-a1dc0932f42604d6bd51ebf13f668e8e6debf409.tar.gz cygnal-a1dc0932f42604d6bd51ebf13f668e8e6debf409.tar.bz2 cygnal-a1dc0932f42604d6bd51ebf13f668e8e6debf409.zip |
* pipe.cc (fhandler_pipe::fixup_after_fork): New method.
* fhandler.h (fhandler_pipe::fixup_after_fork): Declare new method.
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r-- | winsup/cygwin/fhandler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h index ed9ca350b..8f3368e78 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -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); }; |