ntoskrnl.exe: Add stub for KeSetPriorityThread.
This commit is contained in:
parent
d8a12d8374
commit
0190edee7e
|
@ -1109,6 +1109,16 @@ ULONG WINAPI KeQueryTimeIncrement(void)
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* KeSetPriorityThread (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
KPRIORITY WINAPI KeSetPriorityThread( PKTHREAD Thread, KPRIORITY Priority )
|
||||
{
|
||||
FIXME("(%p %d)\n", Thread, Priority);
|
||||
return Priority;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* KeWaitForSingleObject (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -612,7 +612,7 @@
|
|||
@ stub KeSetIdealProcessorThread
|
||||
@ stub KeSetImportanceDpc
|
||||
@ stub KeSetKernelStackSwapEnable
|
||||
@ stub KeSetPriorityThread
|
||||
@ stdcall KeSetPriorityThread(ptr long)
|
||||
@ stub KeSetProfileIrql
|
||||
@ stub KeSetSystemAffinityThread
|
||||
@ stub KeSetTargetProcessorDpc
|
||||
|
|
|
@ -1065,6 +1065,7 @@ void WINAPI KeQuerySystemTime(LARGE_INTEGER*);
|
|||
void WINAPI KeQueryTickCount(LARGE_INTEGER*);
|
||||
ULONG WINAPI KeQueryTimeIncrement(void);
|
||||
LONG WINAPI KeReleaseSemaphore(PRKSEMAPHORE,KPRIORITY,LONG,BOOLEAN);
|
||||
KPRIORITY WINAPI KeSetPriorityThread(PKTHREAD,KPRIORITY);
|
||||
|
||||
PVOID WINAPI MmAllocateContiguousMemory(SIZE_T,PHYSICAL_ADDRESS);
|
||||
PVOID WINAPI MmAllocateNonCachedMemory(SIZE_T);
|
||||
|
|
Loading…
Reference in New Issue