Changeset 19300 in vbox for trunk/src/VBox/VMM/DBGFBp.cpp
- Timestamp:
- May 1, 2009 6:06:59 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/DBGFBp.cpp
r19286 r19300 288 288 */ 289 289 PVMREQ pReq; 290 int rc = VMR3ReqCall(pVM, VM REQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3BpSetInt3, 5, pVM, pAddress, &iHitTrigger, &iHitDisable, piBp);290 int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3BpSetInt3, 5, pVM, pAddress, &iHitTrigger, &iHitDisable, piBp); 291 291 if (RT_SUCCESS(rc)) 292 292 rc = pReq->iStatus; … … 449 449 */ 450 450 PVMREQ pReq; 451 int rc = VMR3ReqCall(pVM, VM REQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3BpSetReg, 7, pVM, pAddress, &iHitTrigger, &iHitDisable, fType, cb, piBp);451 int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3BpSetReg, 7, pVM, pAddress, &iHitTrigger, &iHitDisable, fType, cb, piBp); 452 452 if (RT_SUCCESS(rc)) 453 453 rc = pReq->iStatus; … … 620 620 */ 621 621 PVMREQ pReq; 622 int rc = VMR3ReqCall(pVM, VM REQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3BpSetREM, 5, pVM, pAddress, &iHitTrigger, &iHitDisable, piBp);622 int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3BpSetREM, 5, pVM, pAddress, &iHitTrigger, &iHitDisable, piBp); 623 623 if (RT_SUCCESS(rc)) 624 624 rc = pReq->iStatus; … … 716 716 */ 717 717 PVMREQ pReq; 718 int rc = VMR3ReqCall(pVM, VM REQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3BpClear, 2, pVM, iBp);718 int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3BpClear, 2, pVM, iBp); 719 719 if (RT_SUCCESS(rc)) 720 720 rc = pReq->iStatus; … … 793 793 */ 794 794 PVMREQ pReq; 795 int rc = VMR3ReqCall(pVM, VM REQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3BpEnable, 2, pVM, iBp);795 int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3BpEnable, 2, pVM, iBp); 796 796 if (RT_SUCCESS(rc)) 797 797 rc = pReq->iStatus; … … 870 870 */ 871 871 PVMREQ pReq; 872 int rc = VMR3ReqCall(pVM, VM REQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3BpDisable, 2, pVM, iBp);872 int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3BpDisable, 2, pVM, iBp); 873 873 if (RT_SUCCESS(rc)) 874 874 rc = pReq->iStatus; … … 946 946 */ 947 947 PVMREQ pReq; 948 int rc = VMR3ReqCall(pVM, VM REQDEST_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3BpEnum, 3, pVM, pfnCallback, pvUser);948 int rc = VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3BpEnum, 3, pVM, pfnCallback, pvUser); 949 949 if (RT_SUCCESS(rc)) 950 950 rc = pReq->iStatus;
Note:
See TracChangeset
for help on using the changeset viewer.