VirtualBox

Changeset 29807 in vbox for trunk/src/VBox/Main


Ignore:
Timestamp:
May 26, 2010 10:13:20 AM (15 years ago)
Author:
vboxsync
Message:

Guest Control/IPRT/VBoxManage: More gentle error messages, bug fix for process lookup with different user, correct return value of process start error.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/GuestImpl.cpp

    r29785 r29807  
    10601060                                          tr("The guest did not respond within time (%ums)"), aTimeoutMS);
    10611061                        }
    1062                         else if (vrc == VERR_INVALID_PARAMETER)
    1063                         {
    1064                             rc = setError(VBOX_E_IPRT_ERROR,
    1065                                           tr("The guest reported an unknown process status (%u)"), pData->u32Status);
    1066                         }
    10671062                        else if (vrc == VERR_PERMISSION_DENIED)
    10681063                        {
     
    10721067                        else
    10731068                        {
    1074                             rc = setError(E_UNEXPECTED,
    1075                                           tr("The service call failed with error %Rrc"), vrc);
     1069                            if (pData->u32Status == PROC_STS_ERROR)
     1070                                rc = setError(VBOX_E_IPRT_ERROR,
     1071                                              tr("Process could not be started: %Rrc"), pData->u32Flags);
     1072                            else
     1073                                rc = setError(E_UNEXPECTED,
     1074                                              tr("The service call failed with error %Rrc"), vrc);
    10761075                        }               
    10771076                    }
Note: See TracChangeset for help on using the changeset viewer.

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