StorPortQueryPerformanceCounter 函数 (storport.h)

查询的当前系统性能计数器值由 StorPortQueryPerformanceCounter 例程返回。 性能频率也作为可选参数返回。

语法

ULONG StorPortQueryPerformanceCounter(
  [in]            PVOID          HwDeviceExtension,
  [out, optional] PLARGE_INTEGER PerformanceFrequency,
  [out]           PLARGE_INTEGER PerformanceCounter
);

参数

[in] HwDeviceExtension

指向主机总线适配器的硬件设备扩展的指针 (HBA) 。

[out, optional] PerformanceFrequency

指向用于接收当前系统性能频率值的大整数的指针。 此参数是可选的,可以为 NULL。

[out] PerformanceCounter

指向要接收当前系统性能计数器值的大整数的指针。

返回值

StorPortQueryPerformanceCounter 返回以下状态代码之一:

返回代码 说明
STOR_STATUS_SUCCESS
性能计数器值以 PerformanceCounter 指向的大整数返回。
STOR_STATUS_INVALID_PARAMETER
PerformanceCounter 参数为 NULL

要求

要求
最低受支持的客户端 Windows 8
目标平台 通用
标头 storport.h (包括 Storport.h)
IRQL 任意

另请参阅

StorPortQuerySystemTime