windows-nt/Source/XPSP1/NT/base/ntos/kd64/ia64/kdcmsup.c
2020-09-26 16:20:57 +08:00

51 lines
638 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright (c) 1992 Microsoft Corporation
Module Name:
kdcmsup.c
Abstract:
The module implements code to poll for a kernel debugger breakin attempt.
Author:
Bryan M. Willman (bryanwi) 19-Jan-92
Revision History:
--*/
#include "kdp.h"
LARGE_INTEGER
KdpQueryPerformanceCounter (
IN PKTRAP_FRAME TrapFrame
)
/*++
Routine Description:
This function returns the current value of the system performance
counter.
Arguments:
None.
Return Value:
The value returned by KeQueryPerformanceCounter is returned as the
function value.
--*/
{
return KeQueryPerformanceCounter(0);
}