Changeset 44027 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Dec 4, 2012 7:17:49 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r43872 r44027 859 859 bool fCmpXchg16b; 860 860 rc = CFGMR3QueryBoolDef(pCpumCfg, "CMPXCHG16B", &fCmpXchg16b, false); AssertRCReturn(rc, rc); 861 862 bool fMonitor; 863 rc = CFGMR3QueryBoolDef(pCpumCfg, "MONITOR", &fMonitor, true); AssertRCReturn(rc, rc); 861 864 862 865 /* Cpuid 1 & 0x80000001: … … 900 903 | X86_CPUID_FEATURE_ECX_SSE3 901 904 /* Can't properly emulate monitor & mwait with guest SMP; force the guest to use hlt for idling VCPUs. */ 902 | (( pVM->cCpus == 1) ? X86_CPUID_FEATURE_ECX_MONITOR : 0)905 | ((fMonitor && pVM->cCpus == 1) ? X86_CPUID_FEATURE_ECX_MONITOR : 0) 903 906 //| X86_CPUID_FEATURE_ECX_CPLDS - no CPL qualified debug store. 904 907 //| X86_CPUID_FEATURE_ECX_VMX - not virtualized.
Note:
See TracChangeset
for help on using the changeset viewer.