Changeset 106362 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Oct 16, 2024 1:08:09 PM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 165175
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r106061 r106362 2180 2180 2181 2181 /* Trap #BP for INT3 debug breakpoints set by the VM debugger. */ 2182 if (pVCpu->CTX_SUFF(pVM)->dbgf.ro.cEnabled Int3Breakpoints)2182 if (pVCpu->CTX_SUFF(pVM)->dbgf.ro.cEnabledSwBreakpoints) 2183 2183 hmR0SvmSetXcptIntercept(pVmcb, X86_XCPT_BP); 2184 2184 else … … 4756 4756 && (!VBOXVMM_ANY_PROBES_ENABLED() || !hmR0SvmAnyExpensiveProbesEnabled()) 4757 4757 && !DBGFIsStepping(pVCpu) 4758 && !pVCpu->CTX_SUFF(pVM)->dbgf.ro.cEnabled Int3Breakpoints)4758 && !pVCpu->CTX_SUFF(pVM)->dbgf.ro.cEnabledSwBreakpoints) 4759 4759 rc = hmR0SvmRunGuestCodeNormal(pVCpu, &cLoops); 4760 4760 else … … 5673 5673 * INT3 breakpoints - triggered by #BP exceptions. 5674 5674 */ 5675 if (pVM->dbgf.ro.cEnabled Int3Breakpoints > 0)5675 if (pVM->dbgf.ro.cEnabledSwBreakpoints > 0) 5676 5676 pDbgState->bmXcptExtra |= RT_BIT_32(X86_XCPT_BP); 5677 5677 -
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r106061 r106362 6996 6996 && (!VBOXVMM_ANY_PROBES_ENABLED() || !hmR0VmxAnyExpensiveProbesEnabled()) 6997 6997 && !DBGFIsStepping(pVCpu) 6998 && !pVCpu->CTX_SUFF(pVM)->dbgf.ro.cEnabled Int3Breakpoints)6998 && !pVCpu->CTX_SUFF(pVM)->dbgf.ro.cEnabledSwBreakpoints) 6999 6999 rcStrict = hmR0VmxRunGuestCodeNormal(pVCpu, &cLoops); 7000 7000 else
Note:
See TracChangeset
for help on using the changeset viewer.