Changeset 12225 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Sep 8, 2008 12:59:59 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 36206
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWACCMR0.cpp
r12162 r12225 752 752 */ 753 753 uint64_t u64DR7 = ASMGetDR7(); 754 if (u64DR7 & X86_DR7_ENABLED_MASK)754 if (u64DR7 & (X86_DR7_ENABLED_MASK | X86_DR7_GD)) 755 755 { 756 756 pVM->hwaccm.s.savedhoststate.dr7 = u64DR7; -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r12162 r12225 978 978 #ifdef VBOX_WITH_HWACCM_DEBUG_REGISTER_SUPPORT 979 979 /* Any guest breakpoints enabled? */ 980 if ( (pCtx->dr7 & X86_DR7_ENABLED_MASK)980 if ( (pCtx->dr7 & (X86_DR7_ENABLED_MASK | X86_DR7_GD)) 981 981 && !pVM->hwaccm.s.savedhoststate.fHostDebugRegsSaved) 982 982 {
Note:
See TracChangeset
for help on using the changeset viewer.