ntdll: Also set CPU_FEATURE_HTT on Mac OS.

This commit is contained in:
Charles Davis 2011-10-10 15:34:55 -06:00 committed by Alexandre Julliard
parent 8d133f54c2
commit fe6140e0fd
1 changed files with 1 additions and 0 deletions

View File

@ -1280,6 +1280,7 @@ void fill_cpu_info(void)
if (strstr(buffer, "SSE2")) user_shared_data->ProcessorFeatures[PF_XMMI64_INSTRUCTIONS_AVAILABLE] = TRUE;
if (strstr(buffer, "SSE3")) user_shared_data->ProcessorFeatures[PF_SSE3_INSTRUCTIONS_AVAILABLE] = TRUE;
if (strstr(buffer, "PAE")) user_shared_data->ProcessorFeatures[PF_PAE_ENABLED] = TRUE;
if (strstr(buffer, "HTT")) cached_sci.FeatureSet |= CPU_FEATURE_HTT;
}
break; /* CPU_TYPE_I386 */
default: break;