From: Vadim Zeitlin Date: Wed, 21 Aug 2002 19:49:34 +0000 (+0000) Subject: polling child process IO seems to work now X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6f3d3c68fd3eb2eb36501628e0e23fbafbb1132e polling child process IO seems to work now git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16660 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/unix/utilsunx.cpp b/src/unix/utilsunx.cpp index 6fe5a0b5f7..0b60c5214c 100644 --- a/src/unix/utilsunx.cpp +++ b/src/unix/utilsunx.cpp @@ -363,7 +363,7 @@ public: wxPipeInputStream(int fd) : wxFileInputStream(fd) { } // return TRUE if the pipe is still opened - bool IsOpened() const { return TRUE; } // TODO + bool IsOpened() const { return !Eof(); } // return TRUE if we have anything to read, don't block bool IsAvailable() const; @@ -372,7 +372,7 @@ public: bool wxPipeInputStream::IsAvailable() const { if ( m_lasterror == wxSTREAM_EOF ) - return TRUE; + return FALSE; // check if there is any input available struct timeval tv; @@ -391,15 +391,17 @@ bool wxPipeInputStream::IsAvailable() const // fall through case 0: - return TRUE; + return FALSE; default: wxFAIL_MSG(_T("unexpected select() return value")); // still fall through case 1: - // input available - return TRUE; + // input available -- or maybe not, as select() returns 1 when a + // read() will complete without delay, but it could still not read + // anything + return !Eof(); } }