diff options
author | Christopher Faylor <me@cgf.cx> | 2009-06-29 14:32:58 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2009-06-29 14:32:58 +0000 |
commit | 9adef9ffefbf7f7fc25274bc2774f81c65e72444 (patch) | |
tree | 0d187c67b5e0b95a2739a6dafdf59d2f90d80aff | |
parent | 7fc7ee1726dbe3e443266c669b23a816e87fd85d (diff) | |
download | cygnal-9adef9ffefbf7f7fc25274bc2774f81c65e72444.tar.gz cygnal-9adef9ffefbf7f7fc25274bc2774f81c65e72444.tar.bz2 cygnal-9adef9ffefbf7f7fc25274bc2774f81c65e72444.zip |
* select.cc (peek_pipe): Turn on (temporarily?) the experimental code which
tries to determine when a pipe is writable.
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/select.cc | 7 |
2 files changed, 5 insertions, 7 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 2fdb5b2c1..b1b0dde60 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2009-06-29 Christopher Faylor <me+cygwin@cgf.cx> + + * select.cc (peek_pipe): Turn on (temporarily?) the experimental code + which tries to determine when a pipe is writable. + 2009-06-28 Christopher Faylor <me+cygwin@cgf.cx> * select.cc (peek_pipe): Use has_ongoing_io() to determine if the pipe diff --git a/winsup/cygwin/select.cc b/winsup/cygwin/select.cc index e9dac26ce..2b1d6c438 100644 --- a/winsup/cygwin/select.cc +++ b/winsup/cygwin/select.cc @@ -517,10 +517,6 @@ out: s->write_ready = false; else { -#if 0 -/* FIXME: This code is not quite correct. There's no better solution - so far but to make simple assumptions based on WriteQuotaAvailable. */ - IO_STATUS_BLOCK iosb = {0}; FILE_PIPE_LOCAL_INFORMATION fpli = {0}; @@ -562,9 +558,6 @@ out: fpli.WriteQuotaAvailable); gotone += s->write_ready = true; } -#else - gotone += s->write_ready = true; -#endif } } |