ntoskrnl.exe: Fix KeQueryActiveProcessors() function.
Signed-off-by: Paul Gofman <pgofman@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c7760ce7a2
commit
25f4da665d
|
@ -2379,10 +2379,10 @@ LONG WINAPI KeInsertQueue(PRKQUEUE Queue, PLIST_ENTRY Entry)
|
||||||
*/
|
*/
|
||||||
KAFFINITY WINAPI KeQueryActiveProcessors( void )
|
KAFFINITY WINAPI KeQueryActiveProcessors( void )
|
||||||
{
|
{
|
||||||
DWORD_PTR AffinityMask;
|
DWORD_PTR affinity_mask;
|
||||||
|
|
||||||
GetProcessAffinityMask( GetCurrentProcess(), &AffinityMask, NULL);
|
GetProcessAffinityMask( GetCurrentProcess(), NULL, &affinity_mask);
|
||||||
return AffinityMask;
|
return affinity_mask;
|
||||||
}
|
}
|
||||||
|
|
||||||
ULONG WINAPI KeQueryActiveProcessorCountEx(USHORT group_number)
|
ULONG WINAPI KeQueryActiveProcessorCountEx(USHORT group_number)
|
||||||
|
|
Loading…
Reference in New Issue