Changeset 89017 in vbox
- Timestamp:
- May 12, 2021 3:03:52 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144356
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxHeadless/VBoxHeadless.cpp
r89012 r89017 396 396 { 397 397 RT_NOREF(sig); 398 Log (("%s: received singal %d\n", __FUNCTION__, sig));398 LogRel(("VBoxHeadless: received singal %d\n", sig)); 399 399 g_fTerminateFE = true; 400 400 } … … 1419 1419 #endif 1420 1420 1421 Log(("VBoxHeadless: Waiting for PowerDown...\n"));1422 1421 1423 1422 /* 1424 1423 * Pump vbox events forever 1425 1424 */ 1425 LogRel(("VBoxHeadless: starting event loop\n")); 1426 1426 for (;;) 1427 1427 { … … 1434 1434 if (g_fTerminateFE) 1435 1435 { 1436 Log (("processEventQueue: %Rrc, g_fTerminateFE = true\n", irc));1436 LogRel(("VBoxHeadless: processEventQueue: %Rrc, termination requested\n", irc)); 1437 1437 break; 1438 1438 } … … 1440 1440 if (RT_FAILURE(irc)) 1441 1441 { 1442 Log (("processEventQueue: %Rrc, g_fTerminateFE = false\n", irc));1442 LogRel(("VBoxHeadless: processEventQueue: %Rrc\n", irc)); 1443 1443 RTMsgError("event loop: %Rrc", irc); 1444 1444 break;
Note:
See TracChangeset
for help on using the changeset viewer.