- Timestamp:
- Oct 28, 2021 12:29:09 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/EM.cpp
r91580 r92119 1144 1144 if ( enmCheck != EMSTATE_REM 1145 1145 && enmCheck != EMSTATE_IEM_THEN_REM) 1146 { 1147 LogFlow(("emR3RemExecute: emR3Reschedule -> %d -> VINF_EM_RESCHEDULE\n", enmCheck)); 1148 STAM_REL_PROFILE_ADV_STOP(&pVCpu->em.s.StatREMTotal, a); 1146 1149 return VINF_EM_RESCHEDULE; 1150 } 1151 Log2(("emR3RemExecute: emR3Reschedule -> %d\n", enmCheck)); 1147 1152 } 1148 1153 … … 2048 2053 /** @todo this really isn't nice, should properly handle this */ 2049 2054 /* Note! This can still cause a VM-exit (on Intel). */ 2055 LogFlow(("Calling TRPMR3InjectEvent: %04x:%08RX64 efl=%#x\n", 2056 pVCpu->cpum.GstCtx.cs.Sel, pVCpu->cpum.GstCtx.rip, pVCpu->cpum.GstCtx.eflags)); 2050 2057 rc2 = TRPMR3InjectEvent(pVM, pVCpu, TRPM_HARDWARE_INT, &fInjected); 2051 2058 fWakeupPending = true;
Note:
See TracChangeset
for help on using the changeset viewer.