Changeset 19712 in vbox
- Timestamp:
- May 15, 2009 7:59:32 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CPUM.cpp
r19639 r19712 318 318 pCPUM->aGuestCpuIdStd[1].ecx &= 0 319 319 | X86_CPUID_FEATURE_ECX_SSE3 320 | X86_CPUID_FEATURE_ECX_MONITOR321 320 //| X86_CPUID_FEATURE_ECX_CPLDS - no CPL qualified debug store. 322 321 //| X86_CPUID_FEATURE_ECX_VMX - not virtualized. … … 333 332 //| X86_CPUID_FEATURE_ECX_POPCOUNT 334 333 | 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; 335 338 336 339 /* ASSUMES that this is ALWAYS the AMD define feature set if present. */
Note:
See TracChangeset
for help on using the changeset viewer.