Commit ee4a9969 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

ntoskrnl.exe: Implement KeQueryActiveProcessors.

parent f4d9c09d
......@@ -511,6 +511,24 @@ void WINAPI KeInitializeTimer( PKTIMER Timer )
}
/**********************************************************************
* KeQueryActiveProcessors (NTOSKRNL.EXE.@)
*
* Return the active Processors as bitmask
*
* RETURNS
* active Processors as bitmask
*
*/
KAFFINITY WINAPI KeQueryActiveProcessors( void )
{
DWORD_PTR AffinityMask;
GetProcessAffinityMask( GetCurrentProcess(), &AffinityMask, NULL);
return AffinityMask;
}
/***********************************************************************
* KeQuerySystemTime (NTOSKRNL.EXE.@)
*/
......
......@@ -569,7 +569,7 @@
@ stub KeProfileInterrupt
@ stub KeProfileInterruptWithSource
@ stub KePulseEvent
@ stub KeQueryActiveProcessors
@ stdcall KeQueryActiveProcessors()
@ stub KeQueryInterruptTime
@ stub KeQueryPriorityThread
@ stub KeQueryRuntimeThread
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment