Changeset 19417 in vbox
- Timestamp:
- May 6, 2009 9:40:37 AM (16 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r19326 r19417 906 906 907 907 /* Pending request packets might contain actions that need immediate attention, such as pending hardware interrupts. */ 908 if (VM_FF_ISPENDING(pVM, VM_FF_REQUEST)) 908 if ( VM_FF_ISPENDING(pVM, VM_FF_REQUEST) 909 || VMCPU_FF_ISPENDING(pVCpu, VMCPU_FF_REQUEST)) 909 910 { 910 911 STAM_PROFILE_ADV_STOP(&pVCpu->hwaccm.s.StatEntry, x); -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r19326 r19417 2092 2092 } 2093 2093 /* Pending request packets might contain actions that need immediate attention, such as pending hardware interrupts. */ 2094 if (VM_FF_ISPENDING(pVM, VM_FF_REQUEST)) 2094 if ( VM_FF_ISPENDING(pVM, VM_FF_REQUEST) 2095 || VMCPU_FF_ISPENDING(pVCpu, VMCPU_FF_REQUEST)) 2095 2096 { 2096 2097 rc = VINF_EM_PENDING_REQUEST;
Note:
See TracChangeset
for help on using the changeset viewer.