Changeset 58578 in vbox
- Timestamp:
- Nov 5, 2015 1:17:02 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 103936
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/NativeEventQueue.cpp
r47801 r58578 521 521 /** @todo check how Ctrl-C works on Darwin. */ 522 522 rc = waitForEventsOnDarwin(cMsTimeout); 523 if (rc == VERR_TIMEOUT)524 rc = processPendingEvents(mEventQ);525 523 # else // !RT_OS_DARWIN 526 524 rc = waitForEventsOnXPCOM(mEventQ, cMsTimeout); 525 # endif // !RT_OS_DARWIN 527 526 if ( RT_SUCCESS(rc) 528 527 || rc == VERR_TIMEOUT) 529 rc = processPendingEvents(mEventQ); 530 # endif // !RT_OS_DARWIN 528 { 529 int rc2 = processPendingEvents(mEventQ); 530 /* If the wait was successful don't fail the whole operation. */ 531 if (RT_FAILURE(rc) && RT_FAILURE(rc2)) 532 rc = rc2; 533 } 531 534 } 532 535
Note:
See TracChangeset
for help on using the changeset viewer.