Changeset 10566 in vbox
- Timestamp:
- Jul 12, 2008 2:16:58 PM (17 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r10542 r10566 1131 1131 /** @note NOW IT'S SAFE FOR LOGGING! */ 1132 1132 1133 /* Take care of instruction fusing (sti, mov ss) */1133 /* Take care of instruction fusing (sti, mov ss) (see 15.20.5 Interrupt Shadows) */ 1134 1134 if (pVMCB->ctrl.u64IntShadow & SVM_INTERRUPT_SHADOW_ACTIVE) 1135 1135 { … … 1751 1751 if ( pCtx->eflags.Bits.u1IF 1752 1752 && VM_FF_ISPENDING(pVM, (VM_FF_INTERRUPT_APIC|VM_FF_INTERRUPT_PIC))) 1753 {1754 1753 goto ResumeExecution; 1755 } 1754 1756 1755 rc = VINF_EM_HALT; 1757 1756 break; -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r10542 r10566 2037 2037 if ( pCtx->eflags.Bits.u1IF 2038 2038 && VM_FF_ISPENDING(pVM, (VM_FF_INTERRUPT_APIC|VM_FF_INTERRUPT_PIC))) 2039 {2040 2039 goto ResumeExecution; 2041 }2042 2040 2043 2041 rc = VINF_EM_HALT;
Note:
See TracChangeset
for help on using the changeset viewer.