Changeset 13760 in vbox
- Timestamp:
- Nov 3, 2008 4:20:14 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r13759 r13760 2801 2801 */ 2802 2802 PVMREQ pReq; 2803 int vrc = VMR3ReqCall (mpVM, VMREQDEST_ALL,&pReq, 0 /* no wait! */,2803 int vrc = VMR3ReqCall (mpVM, &pReq, 0 /* no wait! */, 2804 2804 (PFNRT) Console::changeDrive, 8, 2805 2805 this, pszDevice, uInstance, uLun, eState, peState, … … 5521 5521 /** @todo just do everything here and only wrap the PDMR3Usb call. That'll offload some notification stuff from the EMT thread. */ 5522 5522 PVMREQ pReq = NULL; 5523 int vrc = VMR3ReqCall (mpVM, VMREQDEST_ALL,&pReq, RT_INDEFINITE_WAIT,5523 int vrc = VMR3ReqCall (mpVM, &pReq, RT_INDEFINITE_WAIT, 5524 5524 (PFNRT) usbAttachCallback, 6, this, aHostDevice, Uuid.ptr(), fRemote, Address.raw(), aMaskedIfs); 5525 5525 if (VBOX_SUCCESS (vrc)) … … 5646 5646 PVMREQ pReq; 5647 5647 /** @todo just do everything here and only wrap the PDMR3Usb call. That'll offload some notification stuff from the EMT thread. */ 5648 int vrc = VMR3ReqCall (mpVM, VMREQDEST_ALL,&pReq, RT_INDEFINITE_WAIT,5648 int vrc = VMR3ReqCall (mpVM, &pReq, RT_INDEFINITE_WAIT, 5649 5649 (PFNRT) usbDetachCallback, 4, 5650 5650 this, &aIt, (*aIt)->id().raw()); … … 7130 7130 * to access Console. 7131 7131 */ 7132 int vrc = VMR3ReqCall (that->mpVM, VMREQDEST_ALL,&pReq, RT_INDEFINITE_WAIT,7132 int vrc = VMR3ReqCall (that->mpVM, &pReq, RT_INDEFINITE_WAIT, 7133 7133 (PFNRT)reconfigureHardDisks, 3, that->mpVM, 7134 7134 atts [i], &rc);
Note:
See TracChangeset
for help on using the changeset viewer.