ntoskrnl.exe: Add stub for KeSetSystemAffinityThread.
This commit is contained in:
parent
4110c93e41
commit
f592eea591
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue