Changeset 46651 in vbox for trunk/src/VBox/Main/src-server
- Timestamp:
- Jun 19, 2013 11:54:43 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86540
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r46649 r46651 5380 5380 * See @bugref{5724}. 5381 5381 */ 5382 while (pEventQueue->processEventQueue(RT_INDEFINITE_WAIT) != VERR_INTERRUPTED) 5383 /* nothing */ ; 5382 for (;;) 5383 { 5384 rc = pEventQueue->processEventQueue(RT_INDEFINITE_WAIT); 5385 if (rc == VERR_INTERRUPTED) 5386 { 5387 LogFlow(("Event queue processing ended with rc=%Rrc\n", rc)); 5388 rc = VINF_SUCCESS; /* Set success when exiting. */ 5389 break; 5390 } 5391 } 5384 5392 5385 5393 delete pEventQueue;
Note:
See TracChangeset
for help on using the changeset viewer.