VirtualBox

Changeset 39874 in vbox for trunk/src/VBox/Additions/common


Ignore:
Timestamp:
Jan 25, 2012 11:59:08 AM (13 years ago)
Author:
vboxsync
Message:

VBoxServiceControl: Be more quiet on not found guest processes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp

    r39843 r39874  
    567567            rc = VBoxServiceControlExecGetOutput(uPID, uContextID, uHandleID, RT_INDEFINITE_WAIT /* Timeout */,
    568568                                                 pBuf, _64K /* cbSize */, &cbRead);
    569             VBoxServiceVerbose(3, "Control: Got output returned with rc=%Rrc (PID=%u, CID=%u, cbRead=%u, uHandle=%u, uFlags=%u)\n",
    570                                rc, uPID, uContextID, cbRead, uHandleID, uFlags);
     569            VBoxServiceVerbose(3, "Control: [PID %u]: Got output, rc=%Rrc, CID=%u, cbRead=%u, uHandle=%u, uFlags=%u\n",
     570                               uPID, rc, uContextID, cbRead, uHandleID, uFlags);
    571571
    572572            /** Note: Don't convert/touch/modify/whatever the output data here! This might be binary
     
    580580            if (RT_SUCCESS(rc))
    581581                rc = rc2;
     582            else if (rc == VERR_NOT_FOUND) /* It's not critical if guest process (PID) is not found. */
     583                rc = VINF_SUCCESS;
     584
    582585            RTMemFree(pBuf);
    583586        }
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