Changeset 20198 in vbox
- Timestamp:
- Jun 2, 2009 2:45:01 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/EM.cpp
r20195 r20198 3833 3833 else 3834 3834 { 3835 /* All other VCPUs go into the wait for SIPI state. 3836 * Make sure we clear all pending forced actions. 3837 */ 3838 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_ALL_MASK & ~VMCPU_FF_REQUEST); 3835 /* All other VCPUs go into the wait for SIPI state. */ 3839 3836 pVCpu->em.s.enmState = EMSTATE_WAIT_SIPI; 3840 3837 } -
trunk/src/VBox/VMM/VM.cpp
r20158 r20198 2204 2204 */ 2205 2205 VMCPU_ASSERT_STATE(pVCpu, VMCPUSTATE_STARTED); 2206 2207 /* Clear all pending forced actions. */ 2208 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_ALL_MASK & ~VMCPU_FF_REQUEST); 2209 2206 2210 if (pVCpu->idCpu != 0) 2207 2211 return VINF_EM_RESET;
Note:
See TracChangeset
for help on using the changeset viewer.