Changeset 38754 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Sep 14, 2011 5:36:15 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r38211 r38754 4539 4539 RTThreadUserSignal(thread); 4540 4540 4541 while (RT_SUCCESS(eventQ->processEventQueue(RT_INDEFINITE_WAIT))) 4541 /* 4542 * In case of spurious wakeups causing VERR_TIMEOUTs and/or other return codes 4543 * we must not stop processing events and delete the "eventQ" object. This must 4544 * be done ONLY when we stop this loop via interruptEventQueueProcessing(). 4545 * See #5724. 4546 */ 4547 while (eventQ->processEventQueue(RT_INDEFINITE_WAIT) != VERR_INTERRUPTED) 4542 4548 /* nothing */ ; 4543 4549
Note:
See TracChangeset
for help on using the changeset viewer.