Changeset 1445 in vbox for trunk/src/VBox
- Timestamp:
- Mar 13, 2007 3:22:09 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19495
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMGC/DBGFGC.cpp
r1359 r1445 128 128 pVM->dbgf.s.aBreakpoints[iBp].iBp, pPc, pRegFrame->cs, pRegFrame->eip, 129 129 pVM->dbgf.s.aBreakpoints[iBp].cHits)); 130 return (!(pRegFrame->ss & X86_SEL_RPL) && !pRegFrame->eflags.Bits.u1VM)130 return !(pRegFrame->ss & X86_SEL_RPL) && !pRegFrame->eflags.Bits.u1VM 131 131 ? VINF_EM_DBG_HYPER_BREAKPOINT 132 132 : VINF_EM_DBG_BREAKPOINT; … … 135 135 } 136 136 137 return (!(pRegFrame->ss & X86_SEL_RPL) && !pRegFrame->eflags.Bits.u1VM)137 return !(pRegFrame->ss & X86_SEL_RPL) && !pRegFrame->eflags.Bits.u1VM 138 138 ? VINF_EM_DBG_HYPER_ASSERTION 139 139 : VINF_EM_RAW_GUEST_TRAP; 140 140 } 141 141 142
Note:
See TracChangeset
for help on using the changeset viewer.