]> sourceware.org Git - newlib-cygwin.git/commitdiff
* pipe.cc (fhandler_pipe::read): Remove hold over from old read_state
authorChristopher Faylor <me@cgf.cx>
Tue, 8 Feb 2005 16:19:58 +0000 (16:19 +0000)
committerChristopher Faylor <me@cgf.cx>
Tue, 8 Feb 2005 16:19:58 +0000 (16:19 +0000)
implementation.

winsup/cygwin/ChangeLog
winsup/cygwin/pipe.cc

index 24ef866a2fe295c538a4fc0f9be37274956fda22..4bfe15e86090863cce4f9ab1082caa639b51d2b7 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-08  Christopher Faylor  <cgf@timesys.com>
+
+       * pipe.cc (fhandler_pipe::read): Remove hold over from old read_state
+       implementation.
+
 2005-02-06  Yitzchak Scott-Thoennes <sthoenna@efn.org>
 
        * net.cc (cygwin_gethostbyname): Be more picky about what's a numeric
index ee4b7ad6ff627f44d9458c2cf94ea302003386d2..eab600affcf39b17c9d38b169967f16e874ece9b 100644 (file)
@@ -186,7 +186,6 @@ fhandler_pipe::read (void *in_ptr, size_t& in_len)
   else
     {
       pipeargs pi = {dynamic_cast<fhandler_base *>(this), in_ptr, &in_len};
-      ResetEvent (read_state);
       cygthread *th = new cygthread (read_pipe, &pi, "read_pipe");
       if (th->detach (read_state) && !in_len)
        in_len = (size_t) -1;   /* received a signal */
This page took 0.033916 seconds and 5 git commands to generate.