]> sourceware.org Git - newlib-cygwin.git/commitdiff
Cygwin: FIFO: synchronize the blocking mode of a writer's pipe
authorKen Brown <kbrown@cornell.edu>
Thu, 25 Apr 2019 22:21:11 +0000 (18:21 -0400)
committerKen Brown <kbrown@cornell.edu>
Fri, 26 Apr 2019 11:45:37 +0000 (07:45 -0400)
The blocking mode of the Windows pipe underlying a writer is set to
match that of the writer itself when the latter is opened.  Define
fhandler_fifo::fcntl to keep the pipe and the writer in sync if the
blocking mode is changed via fcntl.

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

index 0df25aa40acb0958832c32cf60bb7b0023c05496..f5ed61cc4c0c429777d18df421132f82640c078c 100644 (file)
@@ -1294,6 +1294,7 @@ public:
   int open (int, mode_t);
   off_t lseek (off_t offset, int whence);
   int close ();
+  int fcntl (int cmd, intptr_t);
   int dup (fhandler_base *child, int);
   bool isfifo () const { return true; }
   void set_close_on_exec (bool val);
index ac2196c92c3c58675420623267c57cc88ca74405..a1e395bf62a83bc05b9d34bba86b02c8b023a822 100644 (file)
@@ -891,6 +891,22 @@ fhandler_fifo::close ()
   return fhandler_base::close () || ret;
 }
 
+/* If we're a writer, keep the nonblocking state of the windows pipe
+   in sync with our nonblocking state. */
+int
+fhandler_fifo::fcntl (int cmd, intptr_t arg)
+{
+  if (cmd != F_SETFL || !writer)
+    return fhandler_base::fcntl (cmd, arg);
+
+  const bool was_nonblocking = is_nonblocking ();
+  int res = fhandler_base::fcntl (cmd, arg);
+  const bool now_nonblocking = is_nonblocking ();
+  if (now_nonblocking != was_nonblocking)
+    set_pipe_non_blocking (get_handle (), now_nonblocking);
+  return res;
+}
+
 int
 fhandler_fifo::dup (fhandler_base *child, int flags)
 {
This page took 0.035043 seconds and 5 git commands to generate.