]> sourceware.org Git - newlib-cygwin.git/commitdiff
Cygwin: FIFO: avoid hang after exec
authorKen Brown <kbrown@cornell.edu>
Thu, 18 Apr 2019 15:39:52 +0000 (15:39 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Thu, 18 Apr 2019 17:34:07 +0000 (19:34 +0200)
Define fhandler:fifo::fixup_after_exec, which sets listen_client_thr
and lct_termination_evt to NULL.  This forces the listen_client thread
to restart on the first attempt to read after an exec.  Previously the
exec'd process could hang in fhandler_fifo::raw_read.

winsup/cygwin/fhandler.h
winsup/cygwin/fhandler_fifo.cc

index 8fb176b24315f2dfdeadbd56ba2badaba8809523..da007ee45605e06d96b3f7f2bb64968660d088eb 100644 (file)
@@ -1301,6 +1301,7 @@ public:
   ssize_t __reg3 raw_write (const void *ptr, size_t ulen);
   bool arm (HANDLE h);
   void fixup_after_fork (HANDLE);
+  void fixup_after_exec ();
   int __reg2 fstatvfs (struct statvfs *buf);
   void clear_readahead ()
   {
index 1d02adbaa7188d8bccc93669939d7de5133ac428..bc9c23998a209cb0a108f13edab17b7a994ff8a3 100644 (file)
@@ -942,6 +942,15 @@ fhandler_fifo::fixup_after_fork (HANDLE parent)
   fifo_client_unlock ();
 }
 
+void
+fhandler_fifo::fixup_after_exec ()
+{
+  fhandler_base::fixup_after_exec ();
+  listen_client_thr = NULL;
+  lct_termination_evt = NULL;
+  fifo_client_unlock ();
+}
+
 void
 fhandler_fifo::set_close_on_exec (bool val)
 {
This page took 0.034544 seconds and 5 git commands to generate.