Changeset 64770 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Dec 1, 2016 12:28:44 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 112120
- Location:
- trunk/src/VBox/Debugger
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp
r64721 r64770 1085 1085 */ 1086 1086 uint32_t iBp; 1087 rc = DBGFR3BpSet(pUVM, &Address, iHitTrigger, iHitDisable, &iBp); 1087 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp); 1088 rc = DBGFR3BpSetInt3(pUVM, pDbgc->idCpu, &Address, iHitTrigger, iHitDisable, &iBp); 1088 1089 if (RT_SUCCESS(rc)) 1089 1090 { 1090 PDBGC pDbgc = DBGC_CMDHLP2DBGC(pCmdHlp);1091 1091 rc = dbgcBpAdd(pDbgc, iBp, pszCmds); 1092 1092 if (RT_SUCCESS(rc)) -
trunk/src/VBox/Debugger/testcase/tstDBGCStubs.cpp
r64721 r64770 42 42 } 43 43 44 VMMR3DECL(int) DBGFR3AddrToPhys(PUVM pUVM, VMCPUID idCpu, P DBGFADDRESS pAddress, PRTGCPHYS pGCPhys)44 VMMR3DECL(int) DBGFR3AddrToPhys(PUVM pUVM, VMCPUID idCpu, PCDBGFADDRESS pAddress, PRTGCPHYS pGCPhys) 45 45 { 46 46 return VERR_INTERNAL_ERROR; … … 68 68 return VERR_INTERNAL_ERROR; 69 69 } 70 VMMR3DECL(int) DBGFR3BpSet (PUVM pUVM, PCDBGFADDRESS pAddress, uint64_t iHitTrigger, uint64_t iHitDisable, PRTUINT piBp)70 VMMR3DECL(int) DBGFR3BpSetInt3(PUVM pUVM, VMCPUID idCpu, PCDBGFADDRESS pAddress, uint64_t iHitTrigger, uint64_t iHitDisable, PRTUINT piBp) 71 71 { 72 72 return VERR_INTERNAL_ERROR;
Note:
See TracChangeset
for help on using the changeset viewer.