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.@)
|
* KeWaitForSingleObject (NTOSKRNL.EXE.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -612,7 +612,7 @@
|
||||||
@ stub KeSetIdealProcessorThread
|
@ stub KeSetIdealProcessorThread
|
||||||
@ stub KeSetImportanceDpc
|
@ stub KeSetImportanceDpc
|
||||||
@ stub KeSetKernelStackSwapEnable
|
@ stub KeSetKernelStackSwapEnable
|
||||||
@ stub KeSetPriorityThread
|
@ stdcall KeSetPriorityThread(ptr long)
|
||||||
@ stub KeSetProfileIrql
|
@ stub KeSetProfileIrql
|
||||||
@ stub KeSetSystemAffinityThread
|
@ stub KeSetSystemAffinityThread
|
||||||
@ stub KeSetTargetProcessorDpc
|
@ stub KeSetTargetProcessorDpc
|
||||||
|
|
|
@ -1065,6 +1065,7 @@ void WINAPI KeQuerySystemTime(LARGE_INTEGER*);
|
||||||
void WINAPI KeQueryTickCount(LARGE_INTEGER*);
|
void WINAPI KeQueryTickCount(LARGE_INTEGER*);
|
||||||
ULONG WINAPI KeQueryTimeIncrement(void);
|
ULONG WINAPI KeQueryTimeIncrement(void);
|
||||||
LONG WINAPI KeReleaseSemaphore(PRKSEMAPHORE,KPRIORITY,LONG,BOOLEAN);
|
LONG WINAPI KeReleaseSemaphore(PRKSEMAPHORE,KPRIORITY,LONG,BOOLEAN);
|
||||||
|
KPRIORITY WINAPI KeSetPriorityThread(PKTHREAD,KPRIORITY);
|
||||||
|
|
||||||
PVOID WINAPI MmAllocateContiguousMemory(SIZE_T,PHYSICAL_ADDRESS);
|
PVOID WINAPI MmAllocateContiguousMemory(SIZE_T,PHYSICAL_ADDRESS);
|
||||||
PVOID WINAPI MmAllocateNonCachedMemory(SIZE_T);
|
PVOID WINAPI MmAllocateNonCachedMemory(SIZE_T);
|
||||||
|
|
Loading…
Reference in New Issue