Changeset 13420 in vbox
- Timestamp:
- Oct 21, 2008 9:21:01 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38180
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/VirtualBoxImpl.cpp
r13405 r13420 4707 4707 autoCaller.release(); 4708 4708 4709 #undef VBOX_CHECK_SPAWN_FAILURES 4710 #ifdef VBOX_CHECK_SPAWN_FAILURES 4711 DWORD rc = ::WaitForMultipleObjects (cnt + 1, handles, FALSE, 500); 4712 #else 4709 4713 DWORD rc = ::WaitForMultipleObjects (cnt + 1, handles, FALSE, INFINITE); 4714 #endif 4710 4715 4711 4716 /* … … 4718 4723 4719 4724 bool update = false; 4725 #ifdef VBOX_CHECK_SPAWN_FAILURES 4726 if (rc == WAIT_OBJECT_0 || rc == WAIT_TIMEOUT) 4727 #else 4720 4728 if (rc == WAIT_OBJECT_0) 4729 #endif 4721 4730 { 4722 4731 /* update event is signaled */ … … 4750 4759 handles [i + 1] = (machines [i])->ipcSem(); 4751 4760 4752 #if 0 /* untested */4761 #ifdef VBOX_CHECK_SPAWN_FAILURES 4753 4762 /* check for spawn errors */ 4754 4763 that->getSpawnedMachines (spawnedMachines);
Note:
See TracChangeset
for help on using the changeset viewer.