* fhandler_fifo.cc (fhandler_fifo::open): Accommodate previous return value
change to setup_overlapped.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2010-04-06 Christopher Faylor <me+cygwin@cgf.cx>
|
||||||
|
|
||||||
|
* fhandler_fifo.cc (fhandler_fifo::open): Accommodate previous return
|
||||||
|
value change to setup_overlapped.
|
||||||
|
|
||||||
2010-04-02 Christopher Faylor <me+cygwin@cgf.cx>
|
2010-04-02 Christopher Faylor <me+cygwin@cgf.cx>
|
||||||
|
|
||||||
* fhandler.h (fhandler_base::has_ongoing_io): Declare virtual method.
|
* fhandler.h (fhandler_base::has_ongoing_io): Declare virtual method.
|
||||||
|
@ -143,7 +143,7 @@ fhandler_fifo::open (int flags, mode_t)
|
|||||||
__seterrno ();
|
__seterrno ();
|
||||||
res = 0;
|
res = 0;
|
||||||
}
|
}
|
||||||
else if (!setup_overlapped ())
|
else if (setup_overlapped ())
|
||||||
{
|
{
|
||||||
CloseHandle (h);
|
CloseHandle (h);
|
||||||
__seterrno ();
|
__seterrno ();
|
||||||
|
Reference in New Issue
Block a user