1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

ntoskrnl.exe: Use KeQueryMaximumProcessorCountEx for KeQueryMaximumProcessorCount.

This commit is contained in:
Etaash Mathamsetty 2022-12-01 12:45:42 -05:00 committed by Alexandre Julliard
parent 5792785879
commit 5fd79c32ed

View file

@ -3437,7 +3437,7 @@ ULONG WINAPI KeQueryMaximumProcessorCountEx(USHORT group_number)
*/
ULONG WINAPI KeQueryMaximumProcessorCount(void)
{
return KeQueryActiveProcessorCountEx(ALL_PROCESSOR_GROUPS);
return KeQueryMaximumProcessorCountEx(0);
}
/***********************************************************************