mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Implemented ExIsProcessorFeaturePresent().
svn path=/trunk/; revision=4196
This commit is contained in:
parent
0c1e5baf17
commit
a4dd288c42
1 changed files with 5 additions and 5 deletions
|
@ -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]);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue