Changeset 21259 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jul 6, 2009 3:17:26 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r21258 r21259 1436 1436 1437 1437 /* Note that we don't support guest and host-initiated debugging at the same time. */ 1438 Assert(DBGFIsStepping(pVCpu) );1438 Assert(DBGFIsStepping(pVCpu) || CPUMIsHyperDebugStateActive(pVCpu)); 1439 1439 1440 1440 rc = DBGFRZTrap01Handler(pVM, pVCpu, CPUMCTX2CORE(pCtx), pCtx->dr[6]); -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r21258 r21259 2657 2657 2658 2658 /* Note that we don't support guest and host-initiated debugging at the same time. */ 2659 Assert(DBGFIsStepping(pVCpu) || CPUMIsGuestInRealModeEx(pCtx) );2659 Assert(DBGFIsStepping(pVCpu) || CPUMIsGuestInRealModeEx(pCtx) || CPUMIsHyperDebugStateActive(pVCpu)); 2660 2660 2661 2661 uDR6 = X86_DR6_INIT_VAL;
Note:
See TracChangeset
for help on using the changeset viewer.