Implemented ExIsProcessorFeaturePresent().

svn path=/trunk/; revision=4196
This commit is contained in:
Eric Kohl 2003-02-25 00:25:07 +00:00
parent 0c1e5baf17
commit a4dd288c42

View file

@ -47,12 +47,12 @@ ExInit (VOID)
BOOLEAN STDCALL
ExIsProcessorFeaturePresent (IN ULONG ProcessorFeature)
ExIsProcessorFeaturePresent(IN ULONG ProcessorFeature)
{
if (ProcessorFeature >= 32)
return FALSE;
return FALSE;
if (ProcessorFeature >= PROCESSOR_FEATURES_MAX)
return(FALSE);
return(SharedUserData->ProcessorFeatures[ProcessorFeature]);
}