POWER_INTERNAL_CONCURRENCY_STATS_OUTPUT - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTPOAPI_H

// rev
/**
 * The POWER_INTERNAL_CONCURRENCY_STATS_OUTPUT structure is the variable-length wire format
 * returned by the internal concurrency-statistics queries.
 *
 * For PowerInternalCpuNodeConcurrencyStats:
 * - Count[0] is the bucket count.
 * - Count[1] is reserved.
 * - Data contains Count[0] + 1 ULONGLONG values.
 *
 * For PowerInternalClassConcurrencyStats:
 * - Count[0] and Count[1] are the per-class bucket counts.
 * - Data contains the class 0 ULONGLONG sequence followed by the class 1 sequence.
 * - Each present class contributes Count[n] + 1 ULONGLONG values.
 */
typedef struct _POWER_INTERNAL_CONCURRENCY_STATS_OUTPUT
{
    ULONG Count[2];
    ULONGLONG Data[ANYSIZE_ARRAY];
} POWER_INTERNAL_CONCURRENCY_STATS_OUTPUT, *PPOWER_INTERNAL_CONCURRENCY_STATS_OUTPUT;

#endif

View code on GitHub

NtDoc

No description available.