diff options
author | Christopher Faylor <me@cgf.cx> | 2005-04-16 05:20:01 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-04-16 05:20:01 +0000 |
commit | 06e18175e0fef5cda73bb1c0a9697e81ed28732a (patch) | |
tree | c524d1098dc512e84275fc72b9474e246f7992a5 /winsup/cygwin/fhandler.cc | |
parent | f40d6122ff203b48d23182ac3c70727ed694f205 (diff) | |
download | cygnal-06e18175e0fef5cda73bb1c0a9697e81ed28732a.tar.gz cygnal-06e18175e0fef5cda73bb1c0a9697e81ed28732a.tar.bz2 cygnal-06e18175e0fef5cda73bb1c0a9697e81ed28732a.zip |
* fhandler.cc (fhandler::dup): Duplicate flags, too.
* fhandler.h (fhandler_fifo::owner): Eliminate.
* fhandler_disk_file.cc (fhandler_base::fstat_fs): Handle on-disk devices
better.
(fhandler_base::fstat_helper): Ditto.
* fhandler_fifo.cc (fhandler_fifo::fhandler_fifo): Don't initialize obsolete
"owner".
(fhandler_fifo::open_not_mine): Add some debugging. Duplicate correct handle
when we own it.
(fhandler_fifo::open): Set flags from input, not from first pipe. Flag that
fork fixup is needed.
(fhandler_fifo::dup): Set errno correctly when DuplicateHandle fails.
* pinfo.cc (commune_send): Add debugging for fifo.
* cygwin/version.h: Bump API minor version to 127 to reflect exporting of
sigrelese.
Diffstat (limited to 'winsup/cygwin/fhandler.cc')
-rw-r--r-- | winsup/cygwin/fhandler.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/fhandler.cc b/winsup/cygwin/fhandler.cc index b21b973a4..d84aeb55a 100644 --- a/winsup/cygwin/fhandler.cc +++ b/winsup/cygwin/fhandler.cc @@ -1284,6 +1284,7 @@ fhandler_base::dup (fhandler_base *child) VerifyHandle (nh); child->set_io_handle (nh); } + set_flags (child->get_flags ()); return 0; } |