Changeset 45077 in vbox for trunk/src/VBox/Main
- Timestamp:
- Mar 18, 2013 8:40:51 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84359
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestProcessImpl.cpp
r45010 r45077 943 943 if (pGuestRc) 944 944 *pGuestRc = guestRc; 945 LogFlowThisFunc(("Callback returned rc=%Rrc\n", guestRc)); 945 946 } 946 947 } … … 1169 1170 LogFlowThisFunc(("Callback returned rc=%Rrc\n", guestRc)); 1170 1171 } 1171 else1172 vrc = VERR_TIMEOUT;1173 1172 } 1174 1173 … … 1568 1567 { 1569 1568 int guestRc = pCallbackWrite->GetResultCode(); 1570 LogFlowThisFunc(("Callback returned rc=%Rrc, cbData=%RU32\n", guestRc, pCallbackWrite->GetDataSize()));1571 1572 1569 if (RT_SUCCESS(guestRc)) 1573 1570 { … … 1602 1599 LogFlowThisFunc(("cbWritten=%RU32\n", cbWritten)); 1603 1600 1604 if (pGuestRc)1605 *pGuestRc = guestRc;1606 1607 1601 if (puWritten) 1608 1602 *puWritten = cbWritten; 1609 1610 if (RT_FAILURE(guestRc))1611 vrc = VERR_GENERAL_FAILURE; /** @todo Special guest control rc needed! */1612 1603 } 1604 else 1605 vrc = VERR_GENERAL_FAILURE; /** @todo Special guest control rc needed! */ 1606 1607 if (pGuestRc) 1608 *pGuestRc = guestRc; 1609 LogFlowThisFunc(("Callback returned rc=%Rrc\n", guestRc)); 1613 1610 } 1614 1611 }
Note:
See TracChangeset
for help on using the changeset viewer.