Changeset 38395 in vbox for trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlExec.cpp
- Timestamp:
- Aug 10, 2011 11:48:29 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlExec.cpp
r38180 r38395 1359 1359 Assert(uStatus > INPUT_STS_UNDEFINED); 1360 1360 1361 VBoxServiceVerbose(3, "ControlExec: [PID %u]: Input processed, uStatus=%u, uFlags=0x%x, cbWritten=%u\n",1362 uPID, u Status, uFlags, cbWritten);1361 VBoxServiceVerbose(3, "ControlExec: [PID %u]: Input processed, CID=%u, uStatus=%u, uFlags=0x%x, cbWritten=%u\n", 1362 uPID, uContextID, uStatus, uFlags, cbWritten); 1363 1363 1364 1364 /* Note: Since the context ID is unique the request *has* to be completed here, … … 1401 1401 pBuf, _64K /* cbSize */, &cbRead); 1402 1402 if (RT_SUCCESS(rc)) 1403 VBoxServiceVerbose(3, "ControlExec: [PID %u]: Got output, cbRead=%u, uHandle=%u, uFlags=%u\n",1404 uPID, cbRead, uHandleID, uFlags);1403 VBoxServiceVerbose(3, "ControlExec: [PID %u]: Got output, CID=%u, cbRead=%u, uHandle=%u, uFlags=%u\n", 1404 uPID, uContextID, cbRead, uHandleID, uFlags); 1405 1405 else 1406 VBoxServiceError("ControlExec: [PID %u]: Failed to retrieve output, uHandle=%u, rc=%Rrc\n",1407 uPID, u HandleID, rc);1406 VBoxServiceError("ControlExec: [PID %u]: Failed to retrieve output, CID=%u, uHandle=%u, rc=%Rrc\n", 1407 uPID, uContextID, uHandleID, rc); 1408 1408 1409 1409 /* Note: Since the context ID is unique the request *has* to be completed here,
Note:
See TracChangeset
for help on using the changeset viewer.