Commit 1a2aa0b0 authored by Alexander Wilms's avatar Alexander Wilms Committed by Alexandre Julliard

ntoskrnl: Add KeQueryPriorityThread stub.

parent 9c551448
......@@ -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.@)
......
......@@ -597,7 +597,7 @@
@ stdcall KeQueryActiveProcessors()
@ stdcall KeQueryActiveProcessorCountEx(long)
@ stdcall KeQueryInterruptTime()
@ stub KeQueryPriorityThread
@ stdcall KeQueryPriorityThread(ptr)
@ stub KeQueryRuntimeThread
@ stdcall KeQuerySystemTime(ptr)
@ stdcall KeQueryTickCount(ptr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment