Changeset 43061 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Aug 29, 2012 9:23:43 AM (12 years ago)
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestProcessImpl.cpp
r42920 r43061 658 658 { 659 659 fSignal = (uWaitFlags & ProcessWaitForFlag_Start); 660 /* If the caller only wants to wait until the process has been started, 661 * notify in any case. */ 662 if (mData.mProcess.mFlags & ProcessCreateFlag_WaitForProcessStartOnly) 663 fSignal = true; 660 664 waitRes = ProcessWaitResult_Start; 661 665 … … 1303 1307 } 1304 1308 1309 /* 1310 * If ProcessCreateFlag_WaitForProcessStartOnly was specified on process creation the 1311 * caller is not interested in getting further process statuses -- so just don't notify 1312 * anything here anymore and return. 1313 */ 1314 if (mData.mProcess.mFlags & ProcessCreateFlag_WaitForProcessStartOnly) 1315 waitRes.mResult = ProcessWaitResult_Start; 1305 1316 break; 1306 1317 } -
trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
r43060 r43061 861 861 LogFlowThisFunc(("%s successfully completed\n", procInfo.mName.c_str())); 862 862 } 863 } 864 else if ( procInfo.mFlags == ProcessCreateFlag_WaitForProcessStartOnly 865 && waitRes.mResult == ProcessWaitResult_Start) 866 { 867 LogFlowThisFunc(("%s successfully started\n", procInfo.mName.c_str())); 863 868 } 864 869 else
Note:
See TracChangeset
for help on using the changeset viewer.