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 ) ...@@ -2607,6 +2607,15 @@ ULONGLONG WINAPI KeQueryInterruptTime( void )
return totaltime.QuadPart; 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.@) * KeQuerySystemTime (NTOSKRNL.EXE.@)
......
...@@ -597,7 +597,7 @@ ...@@ -597,7 +597,7 @@
@ stdcall KeQueryActiveProcessors() @ stdcall KeQueryActiveProcessors()
@ stdcall KeQueryActiveProcessorCountEx(long) @ stdcall KeQueryActiveProcessorCountEx(long)
@ stdcall KeQueryInterruptTime() @ stdcall KeQueryInterruptTime()
@ stub KeQueryPriorityThread @ stdcall KeQueryPriorityThread(ptr)
@ stub KeQueryRuntimeThread @ stub KeQueryRuntimeThread
@ stdcall KeQuerySystemTime(ptr) @ stdcall KeQuerySystemTime(ptr)
@ stdcall KeQueryTickCount(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