Changeset 47671 in vbox for trunk/src/VBox/VMM/VMMRZ
- Timestamp:
- Aug 12, 2013 11:16:55 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87874
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMRZ/DBGFRZ.cpp
r47660 r47671 38 38 * other codes are passed execution to host context. 39 39 * 40 * @param pVM Pointer to the VM. 41 * @param pVCpu Pointer to the VMCPU. 42 * @param pRegFrame Pointer to the register frame for the trap. 43 * @param uDr6 The DR6 hypervisor register value. 40 * @param pVM Pointer to the VM. 41 * @param pVCpu Pointer to the VMCPU. 42 * @param pRegFrame Pointer to the register frame for the trap. 43 * @param uDr6 The DR6 hypervisor register value. 44 * @param fAltStepping Alternative stepping indicator. 44 45 */ 45 VMMRZ_INT_DECL(int) DBGFRZTrap01Handler(PVM pVM, PVMCPU pVCpu, PCPUMCTXCORE pRegFrame, RTGCUINTREG uDr6 )46 VMMRZ_INT_DECL(int) DBGFRZTrap01Handler(PVM pVM, PVMCPU pVCpu, PCPUMCTXCORE pRegFrame, RTGCUINTREG uDr6, bool fAltStepping) 46 47 { 47 48 #ifdef IN_RC … … 78 79 */ 79 80 if ( (uDr6 & X86_DR6_BS) 80 && (fInHyper || pVCpu->dbgf.s.fSingleSteppingRaw ))81 && (fInHyper || pVCpu->dbgf.s.fSingleSteppingRaw || fAltStepping)) 81 82 { 82 83 pVCpu->dbgf.s.fSingleSteppingRaw = false;
Note:
See TracChangeset
for help on using the changeset viewer.