diff options
author | Christopher Faylor <me@cgf.cx> | 2001-07-26 19:22:24 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-07-26 19:22:24 +0000 |
commit | 6b91b8d53be5b2333c3a8909d48a7a603aae4177 (patch) | |
tree | 060507f0ad7dac4b9a88696268df574996feb1dc /winsup/cygwin/shared.cc | |
parent | c784c833aa9313a233a493cdb9e28f69fa7d360d (diff) | |
download | newlib-6b91b8d53be5b2333c3a8909d48a7a603aae4177.zip newlib-6b91b8d53be5b2333c3a8909d48a7a603aae4177.tar.gz newlib-6b91b8d53be5b2333c3a8909d48a7a603aae4177.tar.bz2 |
Throughout, reorganize header file inclusion to put security.h prior to
fhandler.h.
* fhandler.h (fhandler_base::get_inheritance): New method.
* fhandler_socket.cc (fhandler_socket::create_secret_event): Use proper
close-on-exec inheritance when creating.
(fhandler_socket::check_peer_secret_event): Create handle as non-inheritable.
Diffstat (limited to 'winsup/cygwin/shared.cc')
-rw-r--r-- | winsup/cygwin/shared.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/shared.cc b/winsup/cygwin/shared.cc index 5419fa4..309965c 100644 --- a/winsup/cygwin/shared.cc +++ b/winsup/cygwin/shared.cc @@ -17,6 +17,7 @@ details. */ #include "sync.h" #include "sigproc.h" #include "pinfo.h" +#include "security.h" #include "fhandler.h" #include "dtable.h" #include "cygheap.h" @@ -24,7 +25,6 @@ details. */ #include "shared_info.h" #include "registry.h" #include "cygwin_version.h" -#include "security.h" #define SHAREDVER (unsigned)(cygwin_version.api_major << 16 | \ cygwin_version.api_minor) |