From: Vadim Zeitlin Date: Tue, 25 Mar 2008 14:51:11 +0000 (+0000) Subject: call OnReadWaiting(), not OnExceptionWaiting(), when we receive EPOLLHUP X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1a781247d4ec9fb552a6e215289027f308844144 call OnReadWaiting(), not OnExceptionWaiting(), when we receive EPOLLHUP git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52812 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/unix/epolldispatcher.cpp b/src/unix/epolldispatcher.cpp index cd57f12411..7cc46b39b0 100644 --- a/src/unix/epolldispatcher.cpp +++ b/src/unix/epolldispatcher.cpp @@ -189,11 +189,15 @@ void wxEpollDispatcher::Dispatch(int timeout) continue; } - if ( p->events & EPOLLIN ) + // note that for compatibility with wxSelectDispatcher we call + // OnReadWaiting() on EPOLLHUP as this is what epoll_wait() returns + // when the write end of a pipe is closed while with select() the + // remaining pipe end becomes ready for reading when this happens + if ( p->events & (EPOLLIN | EPOLLHUP) ) handler->OnReadWaiting(); else if ( p->events & EPOLLOUT ) handler->OnWriteWaiting(); - else if ( p->events & (EPOLLERR | EPOLLHUP) ) + else if ( p->events & EPOLLERR ) handler->OnExceptionWaiting(); } }