Changeset 19300 in vbox for trunk/src/VBox/VMM/DBGFOS.cpp
- Timestamp:
- May 1, 2009 6:06:59 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/DBGFOS.cpp
r13782 r19300 115 115 */ 116 116 PVMREQ pReq; 117 int rc = VMR3ReqCallU(pVM->pUVM, VM REQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, 0, (PFNRT)dbgfR3OSRegister, 2, pVM, pReg);117 int rc = VMR3ReqCallU(pVM->pUVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, 0, (PFNRT)dbgfR3OSRegister, 2, pVM, pReg); 118 118 if (RT_SUCCESS(rc)) 119 119 rc = pReq->iStatus; … … 223 223 */ 224 224 PVMREQ pReq; 225 int rc = VMR3ReqCallU(pVM->pUVM, VM REQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, 0, (PFNRT)dbgfR3OSDetect, 3, pVM, pszName, cchName);225 int rc = VMR3ReqCallU(pVM->pUVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, 0, (PFNRT)dbgfR3OSDetect, 3, pVM, pszName, cchName); 226 226 if (RT_SUCCESS(rc)) 227 227 rc = pReq->iStatus; … … 307 307 */ 308 308 PVMREQ pReq; 309 int rc = VMR3ReqCallU(pVM->pUVM, VM REQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, 0, (PFNRT)dbgfR3OSQueryNameAndVersion,309 int rc = VMR3ReqCallU(pVM->pUVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, 0, (PFNRT)dbgfR3OSQueryNameAndVersion, 310 310 5, pVM, pszName, cchName, pszVersion, cchVersion); 311 311 if (RT_SUCCESS(rc)) … … 358 358 void *pvIf = NULL; 359 359 PVMREQ pReq; 360 VMR3ReqCallVoidU(pVM->pUVM, VM REQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3OSQueryInterface, 3, pVM, enmIf, &pvIf);360 VMR3ReqCallVoidU(pVM->pUVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3OSQueryInterface, 3, pVM, enmIf, &pvIf); 361 361 VMR3ReqFree(pReq); 362 362
Note:
See TracChangeset
for help on using the changeset viewer.