ntdll: Also set CPU_FEATURE_HTT on Mac OS.
This commit is contained in:
parent
8d133f54c2
commit
fe6140e0fd
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue