ntoskrnl: Add KeQueryPriorityThread stub.

Signed-off-by: Alexander Wilms <f.alexander.wilms@gmail.com>
This commit is contained in:
Alexander Wilms 2022-07-03 14:38:49 +02:00 committed by Alexandre Julliard
parent 9c551448cb
commit 1a2aa0b0be
2 changed files with 10 additions and 1 deletions

View file

@ -2607,6 +2607,15 @@ ULONGLONG WINAPI KeQueryInterruptTime( void )
return totaltime.QuadPart;
}
/***********************************************************************
* KeQueryPriorityThread (NTOSKRNL.EXE.@)
*/
KPRIORITY WINAPI KeQueryPriorityThread( PKTHREAD Thread )
{
FIXME("(%p): stub.\n", Thread);
/* priority must be a value between 0 and 31 */
return 15;
}
/***********************************************************************
* KeQuerySystemTime (NTOSKRNL.EXE.@)

View file

@ -597,7 +597,7 @@
@ stdcall KeQueryActiveProcessors()
@ stdcall KeQueryActiveProcessorCountEx(long)
@ stdcall KeQueryInterruptTime()
@ stub KeQueryPriorityThread
@ stdcall KeQueryPriorityThread(ptr)
@ stub KeQueryRuntimeThread
@ stdcall KeQuerySystemTime(ptr)
@ stdcall KeQueryTickCount(ptr)