Changeset 23015 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- Sep 14, 2009 5:00:11 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.cpp
r22277 r23015 349 349 Assert(pVM); 350 350 /* pdm.h says that this has to be called from the EMT thread */ 351 PVMREQ pReq; 352 int rcVBox = VMR3ReqCallVoid(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, 353 (PFNRT)VMDisplay::doInvalidateAndUpdate, 1, mpDrv); 354 if (RT_SUCCESS(rcVBox)) 355 VMR3ReqFree(pReq); 356 351 int rcVBox = VMR3ReqCallVoidWait(pVM, VMCPUID_ANY, 352 (PFNRT)VMDisplay::doInvalidateAndUpdate, 1, mpDrv); 357 353 if (RT_FAILURE(rcVBox)) 358 354 rc = E_FAIL; … … 1189 1185 if (!CFGMR3AreValuesValid(pCfgHandle, "Object\0")) 1190 1186 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES; 1191 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER, 1187 AssertMsgReturn(PDMDrvHlpNoAttach(pDrvIns) == VERR_PDM_NO_ATTACHED_DRIVER, 1192 1188 ("Configuration error: Not possible to attach anything to this driver!\n"), 1193 1189 VERR_PDM_DRVINS_NO_ATTACH); … … 1280 1276 NULL, 1281 1277 /* pfnDetach */ 1282 NULL, 1278 NULL, 1283 1279 /* pfnPowerOff */ 1284 NULL, 1280 NULL, 1285 1281 /* pfnSoftReset */ 1286 1282 NULL,
Note:
See TracChangeset
for help on using the changeset viewer.