Commit f592eea5 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

ntoskrnl.exe: Add stub for KeSetSystemAffinityThread.

parent 4110c93e
......@@ -1452,6 +1452,13 @@ KPRIORITY WINAPI KeSetPriorityThread( PKTHREAD Thread, KPRIORITY Priority )
return Priority;
}
/***********************************************************************
* KeSetSystemAffinityThread (NTOSKRNL.EXE.@)
*/
VOID WINAPI KeSetSystemAffinityThread(KAFFINITY Affinity)
{
FIXME("(%lx) stub\n", Affinity);
}
/***********************************************************************
* KeWaitForSingleObject (NTOSKRNL.EXE.@)
......
......@@ -614,7 +614,7 @@
@ stub KeSetKernelStackSwapEnable
@ stdcall KeSetPriorityThread(ptr long)
@ stub KeSetProfileIrql
@ stub KeSetSystemAffinityThread
@ stdcall KeSetSystemAffinityThread(long)
@ stub KeSetTargetProcessorDpc
@ stub KeSetTimeIncrement
@ stub KeSetTimer
......
......@@ -1226,6 +1226,7 @@ LONG WINAPI KeReleaseSemaphore(PRKSEMAPHORE,KPRIORITY,LONG,BOOLEAN);
LONG WINAPI KeResetEvent(PRKEVENT);
LONG WINAPI KeSetEvent(PRKEVENT,KPRIORITY,BOOLEAN);
KPRIORITY WINAPI KeSetPriorityThread(PKTHREAD,KPRIORITY);
void WINAPI KeSetSystemAffinityThread(KAFFINITY);
PVOID WINAPI MmAllocateContiguousMemory(SIZE_T,PHYSICAL_ADDRESS);
PVOID WINAPI MmAllocateNonCachedMemory(SIZE_T);
......
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