aboutsummaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-02-08 16:19:58 +0000
committerChristopher Faylor <me@cgf.cx>2005-02-08 16:19:58 +0000
commitf1256beb92626fd91843da95548625d9ac7114c5 (patch)
tree5c4d4a2e9c88b801d10799362bb002b1bf90ffa2 /winsup
parent1159e0fd94bd0fffdd9cc64d0e7daa5fcf1ad52f (diff)
downloadnewlib-f1256beb92626fd91843da95548625d9ac7114c5.zip
newlib-f1256beb92626fd91843da95548625d9ac7114c5.tar.gz
newlib-f1256beb92626fd91843da95548625d9ac7114c5.tar.bz2
* pipe.cc (fhandler_pipe::read): Remove hold over from old read_state
implementation.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/pipe.cc1
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 24ef866..4bfe15e 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -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
diff --git a/winsup/cygwin/pipe.cc b/winsup/cygwin/pipe.cc
index ee4b7ad..eab600a 100644
--- a/winsup/cygwin/pipe.cc
+++ b/winsup/cygwin/pipe.cc
@@ -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 */