Changeset 5953 in vbox
- Timestamp:
- Dec 4, 2007 5:18:39 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/CPUMR0.cpp
r4071 r5953 44 44 CPUMR0DECL(int) CPUMR0Init(PVM pVM) 45 45 { 46 Log ComFlow(("CPUMR0Init: %p\n", pVM));46 LogFlow(("CPUMR0Init: %p\n", pVM)); 47 47 48 48 /* … … 52 52 if ((u32CR0 & (X86_CR0_PE | X86_CR0_PG)) != (X86_CR0_PE | X86_CR0_PG)) /* a bit paranoid perhaps.. */ 53 53 { 54 Log Com(("CPUMR0Init: PE or PG not set. cr0=%#x\n", u32CR0));54 Log(("CPUMR0Init: PE or PG not set. cr0=%#x\n", u32CR0)); 55 55 return VERR_UNSUPPORTED_CPU_MODE; 56 56 } … … 83 83 { 84 84 pVM->cpum.s.fUseFlags |= CPUM_USE_SYSENTER; 85 Log Com(("CPUMR0Init: host uses sysenter cs=%08x%08x\n", ASMRdMsr_High(MSR_IA32_SYSENTER_CS), u32));85 Log(("CPUMR0Init: host uses sysenter cs=%08x%08x\n", ASMRdMsr_High(MSR_IA32_SYSENTER_CS), u32)); 86 86 } 87 87 } … … 98 98 { 99 99 pVM->cpum.s.fUseFlags |= CPUM_USE_DEBUG_REGS_HOST; 100 Log Com(("CPUMR0Init: host uses debug registers (dr7=%x)\n", u32DR7));100 Log(("CPUMR0Init: host uses debug registers (dr7=%x)\n", u32DR7)); 101 101 } 102 102
Note:
See TracChangeset
for help on using the changeset viewer.