Changeset 39874 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Jan 25, 2012 11:59:08 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp
r39843 r39874 567 567 rc = VBoxServiceControlExecGetOutput(uPID, uContextID, uHandleID, RT_INDEFINITE_WAIT /* Timeout */, 568 568 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); 571 571 572 572 /** Note: Don't convert/touch/modify/whatever the output data here! This might be binary … … 580 580 if (RT_SUCCESS(rc)) 581 581 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 582 585 RTMemFree(pBuf); 583 586 }
Note:
See TracChangeset
for help on using the changeset viewer.