ntoskrnl.exe: Implement KeSetSystemAffinityThread() function.
Signed-off-by: Paul Gofman <pgofman@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c3bc7689b1
commit
631227563b
|
@ -2450,9 +2450,9 @@ KPRIORITY WINAPI KeSetPriorityThread( PKTHREAD Thread, KPRIORITY Priority )
|
|||
/***********************************************************************
|
||||
* KeSetSystemAffinityThread (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
VOID WINAPI KeSetSystemAffinityThread(KAFFINITY Affinity)
|
||||
VOID WINAPI KeSetSystemAffinityThread(KAFFINITY affinity)
|
||||
{
|
||||
FIXME("(%lx) stub\n", Affinity);
|
||||
KeSetSystemAffinityThreadEx(affinity);
|
||||
}
|
||||
|
||||
KAFFINITY WINAPI KeSetSystemAffinityThreadEx(KAFFINITY affinity)
|
||||
|
|
Loading…
Reference in New Issue