Changeset 9184 in vbox for trunk/src/VBox
- Timestamp:
- May 28, 2008 1:50:47 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r9125 r9184 1662 1662 case SVM_EXIT_HLT: 1663 1663 /** Check if external interrupts are pending; if so, don't switch back. */ 1664 if (VM_FF_ISPENDING(pVM, (VM_FF_INTERRUPT_APIC|VM_FF_INTERRUPT_PIC))) 1664 if ( pCtx->eflags.Bits.u1IF 1665 && VM_FF_ISPENDING(pVM, (VM_FF_INTERRUPT_APIC|VM_FF_INTERRUPT_PIC))) 1665 1666 { 1666 1667 pCtx->eip++; /* skip hlt */
Note:
See TracChangeset
for help on using the changeset viewer.