On Tue, 16 Jul 2002, Brad Nicholes wrote: > protocol.c is compared against the macro APR_STATUS_IS_EAGAIN(). The > problem for both NetWare and Win32 is that this macros is defined to > test the rv against WSAEWOULDBLOCK rather than EWOULDBLOCK. Since the > call to select() in apr_poll() actually returns EWOULDBLOCK for a pipe,
Now *that* makes sense. ++1 for checking for EWOULDBLOCK in APR_STATUS_IS_EAGAIN on those platforms. --Cliff
