ntoskrnl.exe: Add stub for KeSetPriorityThread.

This commit is contained in:
Stefan Leichter 2009-12-29 10:13:37 +01:00 committed by Alexandre Julliard
parent d8a12d8374
commit 0190edee7e
3 changed files with 12 additions and 1 deletions

View File

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

View File

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

View File

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