Changeset 5816 in vbox
- Timestamp:
- Nov 22, 2007 5:46:01 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/HGCMInternal.cpp
r4242 r5816 134 134 } 135 135 136 dprintf (("VbglHGCMCall: pCallInfo->cParms = %d, pHGCMCall->u32Function = %d\n", pCallInfo->cParms, pCallInfo->u32Function)); 136 /* Anyone who needs this can re-enable it locally */ 137 /* dprintf (("VbglHGCMCall: pCallInfo->cParms = %d, pHGCMCall->u32Function = %d\n", pCallInfo->cParms, pCallInfo->u32Function)); */ 137 138 138 139 pHGCMCall = NULL; … … 143 144 rc = VbglGRAlloc ((VMMDevRequestHeader **)&pHGCMCall, sizeof (VMMDevHGCMCall) + cbParms, VMMDevReq_HGCMCall); 144 145 145 dprintf (("VbglHGCMCall Allocated gr %p, rc = %Vrc, cbParms = %d\n", pHGCMCall, rc, cbParms)); 146 /* Anyone who needs this can re-enable it locally */ 147 /* dprintf (("VbglHGCMCall Allocated gr %p, rc = %Vrc, cbParms = %d\n", pHGCMCall, rc, cbParms)); */ 146 148 147 149 if (VBOX_SUCCESS(rc)) … … 203 205 if (VBOX_SUCCESS(rc)) 204 206 { 205 dprintf (("calling VbglGRPerform\n")); 207 /* Anyone who needs this can re-enable it locally */ 208 /* dprintf (("calling VbglGRPerform\n")); */ 206 209 207 210 /* Issue request */ 208 211 rc = VbglGRPerform (&pHGCMCall->header.header); 209 212 210 dprintf (("VbglGRPerform rc = %Vrc (header rc=%d)\n", rc, pHGCMCall->header.result)); 213 /* Anyone who needs this can re-enable it locally */ 214 /* dprintf (("VbglGRPerform rc = %Vrc (header rc=%d)\n", rc, pHGCMCall->header.result)); */ 211 215 212 216 /** If the call failed, but as a result of the request itself, then pretend success
Note:
See TracChangeset
for help on using the changeset viewer.