Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2001-09-20 15:29:48 +0400
committerCorinna Vinschen <corinna@vinschen.de>2001-09-20 15:29:48 +0400
commit8e54fb88f368b4f582d2f40b42056d730dd229bc (patch)
tree6e22b77d8a61dfd723c61adf3d9fa233bccc8f01 /winsup/cygwin/fhandler_socket.cc
parentf4e6b76a05b9e0a0c851b0473eb51285028e3e41 (diff)
* fhandler.h (fhandler_socket::fixup_after_exec): Remove inline
implementation. (fhandler_dev_raw::fixup_after_exec): Ditto. * fhandler_raw.cc (fhandler_dev_raw::fixup_after_fork): Don't duplicate buffer on fork to avoid memory leak. (fhandler_dev_raw::fixup_after_exec): New implementation equal to former fixup_after_fork() implementation. * fhandler_socket.cc (fhandler_socket::fixup_after_fork): Do nothing when not using Winsock2. (fhandler_socket::fixup_after_exec): New implementation. (fhandler_socket::set_close_on_exec): Never call set_inheritance().
Diffstat (limited to 'winsup/cygwin/fhandler_socket.cc')
-rw-r--r--winsup/cygwin/fhandler_socket.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/winsup/cygwin/fhandler_socket.cc b/winsup/cygwin/fhandler_socket.cc
index 9e019f9b8..dc76d0e0b 100644
--- a/winsup/cygwin/fhandler_socket.cc
+++ b/winsup/cygwin/fhandler_socket.cc
@@ -202,13 +202,24 @@ fhandler_socket::fixup_after_fork (HANDLE parent)
}
else
{
+#if 0
fhandler_base::fixup_after_fork (parent);
+#endif
debug_printf ("Without Winsock 2.0");
}
if (secret_event)
fork_fixup (parent, secret_event, "secret_event");
}
+void
+fhandler_socket::fixup_after_exec (HANDLE parent)
+{
+ if (!get_close_on_exec ())
+ fixup_after_fork (parent);
+ else
+ closesocket (get_socket ());
+}
+
int
fhandler_socket::dup (fhandler_base *child)
{
@@ -447,9 +458,11 @@ fhandler_socket::fcntl (int cmd, void *arg)
void
fhandler_socket::set_close_on_exec (int val)
{
+#if 0
extern WSADATA wsadata;
if (wsadata.wVersion < 512) /* < Winsock 2.0 */
set_inheritance (get_handle (), val);
+#endif
set_close_on_exec_flag (val);
debug_printf ("set close_on_exec for %s to %d", get_name (), val);
}