- Timestamp:
- Aug 15, 2012 11:28:35 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/DBGF.cpp
r41965 r42833 590 590 RTGCPTR eip = pCtx->rip + pCtx->cs.u64Base; 591 591 #endif 592 for ( iBp = 0; iBp < RT_ELEMENTS(pVM->dbgf.s.aBreakpoints); iBp++)593 if ( pVM->dbgf.s.aBreakpoints[i Bp].enmType == DBGFBPTYPE_REM594 && pVM->dbgf.s.aBreakpoints[i Bp].GCPtr == eip)592 for (size_t i = 0; i < RT_ELEMENTS(pVM->dbgf.s.aBreakpoints); i++) 593 if ( pVM->dbgf.s.aBreakpoints[i].enmType == DBGFBPTYPE_REM 594 && pVM->dbgf.s.aBreakpoints[i].GCPtr == eip) 595 595 { 596 pVM->dbgf.s.DbgEvent.u.Bp.iBp = iBp;596 pVM->dbgf.s.DbgEvent.u.Bp.iBp = pVM->dbgf.s.aBreakpoints[i].iBp; 597 597 break; 598 598 }
Note:
See TracChangeset
for help on using the changeset viewer.