ntoskrnl.exe: Add stub for KeSetSystemAffinityThread.

This commit is contained in:
Stefan Leichter 2015-01-02 12:44:38 +01:00 committed by Alexandre Julliard
parent 4110c93e41
commit f592eea591
3 changed files with 9 additions and 1 deletions

View File

@ -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.@)

View File

@ -614,7 +614,7 @@
@ stub KeSetKernelStackSwapEnable
@ stdcall KeSetPriorityThread(ptr long)
@ stub KeSetProfileIrql
@ stub KeSetSystemAffinityThread
@ stdcall KeSetSystemAffinityThread(long)
@ stub KeSetTargetProcessorDpc
@ stub KeSetTimeIncrement
@ stub KeSetTimer

View File

@ -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);