Changeset 86755 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Oct 29, 2020 8:30:25 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 141149
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/DBGF.cpp
r86699 r86755 786 786 DBGFEVENT DbgEvent; 787 787 #ifndef VBOX_WITH_LOTS_OF_DBGF_BPS 788 RTUINT iBp = DbgEvent.u.Bp. iBp = pVCpu->dbgf.s.iActiveBp;788 RTUINT iBp = DbgEvent.u.Bp.hBp = pVCpu->dbgf.s.iActiveBp; 789 789 pVCpu->dbgf.s.iActiveBp = ~0U; 790 790 if (iBp != ~0U) … … 817 817 && pVM->dbgf.s.aBreakpoints[i].u.Rem.GCPtr == eip) 818 818 { 819 DbgEvent.u.Bp. iBp = pVM->dbgf.s.aBreakpoints[i].iBp;819 DbgEvent.u.Bp.hBp = pVM->dbgf.s.aBreakpoints[i].iBp; 820 820 break; 821 821 } 822 AssertMsg(DbgEvent.u.Bp. iBp != ~0U, ("eip=%08x\n", eip));822 AssertMsg(DbgEvent.u.Bp.hBp != ~0U, ("eip=%08x\n", eip)); 823 823 return dbgfR3SendEventWaitEx(pVM, pVCpu, enmEvent, DBGFEVENTCTX_REM, &DbgEvent.u, sizeof(DbgEvent.u.Bp)); 824 824 #else
Note:
See TracChangeset
for help on using the changeset viewer.