Changeset 19724 in vbox
- Timestamp:
- May 15, 2009 9:39:02 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CPUM.cpp
r19712 r19724 318 318 pCPUM->aGuestCpuIdStd[1].ecx &= 0 319 319 | X86_CPUID_FEATURE_ECX_SSE3 320 /* Can't properly emulate monitor & mwait with guest SMP; force the guest to use hlt for idling VCPUs. */ 321 | ((pVM->cCPUs == 1) ? X86_CPUID_FEATURE_ECX_MONITOR : 0) 320 322 //| X86_CPUID_FEATURE_ECX_CPLDS - no CPL qualified debug store. 321 323 //| X86_CPUID_FEATURE_ECX_VMX - not virtualized. … … 332 334 //| X86_CPUID_FEATURE_ECX_POPCOUNT 333 335 | 0; 334 335 /* Can't properly emulate monitor & mwait with guest SMP; force the guest to use hlt for idling VCPUs. */336 if (pVM->cCPUs == 1)337 pCPUM->aGuestCpuIdStd[1].ecx |= X86_CPUID_FEATURE_ECX_MONITOR;338 336 339 337 /* ASSUMES that this is ALWAYS the AMD define feature set if present. */
Note:
See TracChangeset
for help on using the changeset viewer.