Changeset 32916 in vbox
- Timestamp:
- Oct 5, 2010 1:33:31 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 66399
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/EM.cpp
r32914 r32916 898 898 Log(("EMV86: %04X:%08X IF=%d\n", pCtx->cs, pCtx->eip, pCtx->eflags.Bits.u1IF)); 899 899 else 900 Log(("EMR%d: %04X:%08X ESP=%08X IF=%d CR0=%x \n", cpl, pCtx->cs, pCtx->eip, pCtx->esp, pCtx->eflags.Bits.u1IF, (uint32_t)pCtx->cr0));900 Log(("EMR%d: %04X:%08X ESP=%08X IF=%d CR0=%x eflags=%x\n", cpl, pCtx->cs, pCtx->eip, pCtx->esp, pCtx->eflags.Bits.u1IF, (uint32_t)pCtx->cr0, pCtx->eflags.u)); 901 901 #endif 902 902 STAM_REL_PROFILE_ADV_START(&pVCpu->em.s.StatREMTotal, a); … … 1692 1692 pVCpu->em.s.u64TimeSliceExec = u64KernelTime + u64UserTime - pVCpu->em.s.u64TimeSliceStartExec; 1693 1693 1694 if (pVCpu->em.s.u64TimeSliceExec >= (EM_TIME_SLICE * 100) / pVM->uCpuExecutionCap)1694 if (pVCpu->em.s.u64TimeSliceExec >= (EM_TIME_SLICE * pVM->uCpuExecutionCap) / 100) 1695 1695 return false; 1696 1696 }
Note:
See TracChangeset
for help on using the changeset viewer.