Changeset 32134 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Aug 31, 2010 12:13:23 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/socket.cpp
r32131 r32134 145 145 * This is ZERO if we're currently not subscribing to anything. */ 146 146 uint32_t fSubscribedEvts; 147 /** Saved events which are only posted once */147 /** Saved events which are only posted once. */ 148 148 uint32_t fEventsSaved; 149 149 #endif /* RT_OS_WINDOWS */ … … 856 856 AssertReturn(rtSocketTryLock(pThis), VERR_CONCURRENT_ACCESS); 857 857 858 859 858 int rc = rtSocketSwitchBlockingMode(pThis, false /* fBlocking */); 860 859 if (RT_FAILURE(rc)) … … 1543 1542 /* 1544 1543 * Save the write event if required. 1545 * it is only posted once and might get lost 1546 * if the another source in the pollset with a higher priority 1547 * has pending events. 1548 */ 1544 * It is only posted once and might get lost if the another source in the 1545 * pollset with a higher priority has pending events. 1546 */ 1549 1547 if ( !fHarvestEvents 1550 1548 && fRetEvents)
Note:
See TracChangeset
for help on using the changeset viewer.