Changeset 44517 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Feb 1, 2013 3:24:28 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83556
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/DBGFBp.cpp
r44399 r44517 360 360 */ 361 361 /** @todo SMP? */ 362 int rc = VMR3Req PriorityCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)dbgfR3BpSetInt3, 5,363 362 int rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)dbgfR3BpSetInt3, 5, 363 pUVM, pAddress, &iHitTrigger, &iHitDisable, piBp); 364 364 LogFlow(("DBGFR3BpSet: returns %Rrc\n", rc)); 365 365 return rc; … … 554 554 * This must be done on EMT. 555 555 */ 556 int rc = VMR3Req PriorityCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)dbgfR3BpSetReg, 7,557 556 int rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)dbgfR3BpSetReg, 7, 557 pUVM, pAddress, &iHitTrigger, &iHitDisable, fType, cb, piBp); 558 558 LogFlow(("DBGFR3BpSetReg: returns %Rrc\n", rc)); 559 559 return rc; … … 702 702 * This must be done on EMT. 703 703 */ 704 int rc = VMR3Req PriorityCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)dbgfR3BpSetREM, 5,705 704 int rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)dbgfR3BpSetREM, 5, 705 pUVM, pAddress, &iHitTrigger, &iHitDisable, piBp); 706 706 LogFlow(("DBGFR3BpSetREM: returns %Rrc\n", rc)); 707 707 return rc; … … 781 781 * This must be done on EMT. 782 782 */ 783 int rc = VMR3Req PriorityCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)dbgfR3BpClear, 2, pUVM, iBp);783 int rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)dbgfR3BpClear, 2, pUVM, iBp); 784 784 LogFlow(("DBGFR3BpClear: returns %Rrc\n", rc)); 785 785 return rc; … … 859 859 * This must be done on EMT. 860 860 */ 861 int rc = VMR3Req PriorityCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)dbgfR3BpEnable, 2, pUVM, iBp);861 int rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)dbgfR3BpEnable, 2, pUVM, iBp); 862 862 LogFlow(("DBGFR3BpEnable: returns %Rrc\n", rc)); 863 863 return rc; … … 935 935 * This must be done on EMT. 936 936 */ 937 int rc = VMR3Req PriorityCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)dbgfR3BpDisable, 2, pUVM, iBp);937 int rc = VMR3ReqCallWaitU(pUVM, VMCPUID_ANY, (PFNRT)dbgfR3BpDisable, 2, pUVM, iBp); 938 938 LogFlow(("DBGFR3BpDisable: returns %Rrc\n", rc)); 939 939 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.