Changeset 43299 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Sep 11, 2012 1:36:38 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 80718
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestProcessImpl.cpp
r43297 r43299 2043 2043 2044 2044 case ProcessWaitResult_Error: 2045 vrc = VERR_GENERAL_FAILURE; /** @todo Special guest control rc needed! */ 2046 break; 2047 2045 2048 case ProcessWaitResult_Terminate: 2049 fDone = true; 2050 break; 2051 2046 2052 case ProcessWaitResult_Timeout: 2047 fDone = true;2053 vrc = VERR_TIMEOUT; 2048 2054 break; 2049 2055 … … 2114 2120 if (!pProcess.isNull()) 2115 2121 { 2122 /** @todo Add pProcess.Terminate() here as soon as it's implemented. */ 2123 2116 2124 Assert(pSession); 2117 2125 int rc2 = pSession->processRemoveFromList(pProcess); -
trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
r43200 r43299 936 936 case VERR_GENERAL_FAILURE: /** @todo Special guest control rc needed! */ 937 937 setProgressErrorMsg(VBOX_E_IPRT_ERROR, 938 GuestProcess::guestErrorToString(vrc)); 938 GuestProcess::guestErrorToString(guestRc)); 939 break; 940 941 case VERR_INVALID_STATE: /** @todo Special guest control rc needed! */ 942 setProgressErrorMsg(VBOX_E_IPRT_ERROR, 943 Utf8StrFmt(GuestSession::tr("Update file \"%s\" reported invalid running state"), 944 procInfo.mCommand.c_str())); 939 945 break; 940 946
Note:
See TracChangeset
for help on using the changeset viewer.