ntoskrnl.exe: Implement KeQueryInterruptTime.

This commit is contained in:
Detlef Riekenberg 2008-04-07 21:15:46 +02:00 committed by Alexandre Julliard
parent ee4a996963
commit 28553fa8a7
2 changed files with 16 additions and 1 deletions

View file

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

View file

@ -570,7 +570,7 @@
@ stub KeProfileInterruptWithSource
@ stub KePulseEvent
@ stdcall KeQueryActiveProcessors()
@ stub KeQueryInterruptTime
@ stdcall KeQueryInterruptTime()
@ stub KeQueryPriorityThread
@ stub KeQueryRuntimeThread
@ stdcall KeQuerySystemTime(ptr)