Commit 28553fa8 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

ntoskrnl.exe: Implement KeQueryInterruptTime.

parent ee4a9969
......@@ -529,6 +529,21 @@ KAFFINITY WINAPI KeQueryActiveProcessors( void )
}
/**********************************************************************
* KeQueryInterruptTime (NTOSKRNL.EXE.@)
*
* Return the interrupt time count
*
*/
ULONGLONG WINAPI KeQueryInterruptTime( void )
{
LARGE_INTEGER totaltime;
KeQueryTickCount(&totaltime);
return totaltime.QuadPart;
}
/***********************************************************************
* KeQuerySystemTime (NTOSKRNL.EXE.@)
*/
......
......@@ -570,7 +570,7 @@
@ stub KeProfileInterruptWithSource
@ stub KePulseEvent
@ stdcall KeQueryActiveProcessors()
@ stub KeQueryInterruptTime
@ stdcall KeQueryInterruptTime()
@ stub KeQueryPriorityThread
@ stub KeQueryRuntimeThread
@ stdcall KeQuerySystemTime(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