mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 04:13:33 +00:00
Implemented ExIsProcessorFeaturePresent().
svn path=/trunk/; revision=4196
This commit is contained in:
@@ -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]);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user