Changeset 32459 in vbox
- Timestamp:
- Sep 13, 2010 4:36:11 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMGC/TRPMGCHandlers.cpp
r32458 r32459 209 209 else if (VM_FF_ISPENDING(pVM, VM_FF_PDM_DMA)) 210 210 rc = VINF_EM_RAW_TO_R3; 211 /* Pending request packets might contain actions that need immediate 212 attention, such as pending hardware interrupts. */ 213 else if ( VM_FF_ISPENDING(pVM, VM_FF_REQUEST) 214 || VMCPU_FF_ISPENDING(pVCpu, VMCPU_FF_REQUEST)) 215 rc = VINF_EM_PENDING_REQUEST; 211 216 /* Pending interrupt: dispatch it. */ 212 217 else if ( VMCPU_FF_ISPENDING(pVCpu, VMCPU_FF_INTERRUPT_APIC | VMCPU_FF_INTERRUPT_PIC) … … 246 251 #endif 247 252 } 248 /** @todo move up before SyncCR3 */249 /* Pending request packets might contain actions that need immediate attention, such as pending hardware interrupts. */250 else if ( VM_FF_ISPENDING(pVM, VM_FF_REQUEST)251 || VMCPU_FF_ISPENDING(pVCpu, VMCPU_FF_REQUEST))252 rc = VINF_EM_PENDING_REQUEST;253 253 } 254 254
Note:
See TracChangeset
for help on using the changeset viewer.