ntoskrnl.exe: Implement KeQueryInterruptTime.
This commit is contained in:
parent
ee4a996963
commit
28553fa8a7
2 changed files with 16 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue