- Timestamp:
- Mar 23, 2010 3:14:08 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/pipe-win.cpp
r27614 r27637 1224 1224 /* Check if there is available buffer space. */ 1225 1225 if ( !fRetEvents 1226 && (fEvents & RTPOLL_EVT_WRITE) 1226 1227 && ( Info.WriteQuotaAvailable > 0 1227 1228 || Info.OutboundQuota == 0) … … 1229 1230 fRetEvents |= RTPOLL_EVT_WRITE; 1230 1231 } 1231 else if ( !fRetEvents 1232 && (fEvents & RTPOLL_EVT_WRITE)) 1232 else if (fEvents & RTPOLL_EVT_WRITE) 1233 1233 fRetEvents |= RTPOLL_EVT_WRITE; 1234 1234 }
Note:
See TracChangeset
for help on using the changeset viewer.