* select.cc (peek_pipe): Use has_ongoing_io() to determine if the pipe is ready
for writing rather than performing brute-force checks.
This commit is contained in:
parent
c81ceaefec
commit
7fc7ee1726
|
@ -1,3 +1,8 @@
|
||||||
|
2009-06-28 Christopher Faylor <me+cygwin@cgf.cx>
|
||||||
|
|
||||||
|
* select.cc (peek_pipe): Use has_ongoing_io() to determine if the pipe
|
||||||
|
is ready for writing rather than performing brute-force checks.
|
||||||
|
|
||||||
2009-06-28 Christopher Faylor <me+cygwin@cgf.cx>
|
2009-06-28 Christopher Faylor <me+cygwin@cgf.cx>
|
||||||
|
|
||||||
* fhandler.h (fhandler_base::has_ongoing_io): Declare new function.
|
* fhandler.h (fhandler_base::has_ongoing_io): Declare new function.
|
||||||
|
|
|
@ -513,9 +513,7 @@ out:
|
||||||
else if (fh->get_device () == FH_PIPER)
|
else if (fh->get_device () == FH_PIPER)
|
||||||
select_printf ("%s, select for write on read end of pipe",
|
select_printf ("%s, select for write on read end of pipe",
|
||||||
fh->get_name ());
|
fh->get_name ());
|
||||||
else if (fh->get_overlapped () && fh->get_overlapped ()->hEvent
|
else if (fh->has_ongoing_io ())
|
||||||
&& WaitForSingleObject (fh->get_overlapped ()->hEvent, 0)
|
|
||||||
!= WAIT_OBJECT_0)
|
|
||||||
s->write_ready = false;
|
s->write_ready = false;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue