Changeset 62584 in vbox for trunk/src/VBox/Runtime/r3/poll.cpp
- Timestamp:
- Jul 27, 2016 11:46:03 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109153
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/poll.cpp
r62564 r62584 241 241 */ 242 242 # ifdef RT_OS_WINDOWS 243 RT_NOREF_PV(MsStart); 244 243 245 DWORD dwRc = WaitForMultipleObjectsEx(cHandles, pThis->pahNative, 244 246 FALSE /*fWaitAll */, 245 247 cMillies == RT_INDEFINITE_WAIT ? INFINITE : cMillies, 246 248 TRUE /*fAlertable*/); 247 if ( dwRc >= WAIT_OBJECT_0248 && dwRc <WAIT_OBJECT_0 + cHandles)249 AssertCompile(WAIT_OBJECT_0 == 0); 250 if (dwRc < WAIT_OBJECT_0 + cHandles) 249 251 rc = VERR_INTERRUPTED; 250 252 else if (dwRc == WAIT_TIMEOUT)
Note:
See TracChangeset
for help on using the changeset viewer.