VirtualBox

Changeset 46651 in vbox for trunk/src/VBox/Main/src-server


Ignore:
Timestamp:
Jun 19, 2013 11:54:43 AM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
86540
Message:

Build fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp

    r46649 r46651  
    53805380         * See @bugref{5724}.
    53815381         */
    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        }
    53845392
    53855393        delete pEventQueue;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette