PROCESS_ENERGY_VALUES_CYCLE_TYPE_INDEX - NtDoc

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

/**
 * The PROCESS_ENERGY_VALUES_CYCLE_TYPE_INDEX type represents the cycle type (user vs. kernel)
 * used as the second index of the Cycles, AttributedCycles, and WorkOnBehalfCycles.
 */
typedef enum _PROCESS_ENERGY_VALUES_CYCLE_TYPE_INDEX
{
    // User-mode cycles accumulated by threads in this QoS bucket.
    ProcessEnergyValuesCycleTypeUser = 0,
    // Kernel-mode cycles accumulated by threads in this QoS bucket.
    ProcessEnergyValuesCycleTypeKernel = 1,
    // The maximum number of cycle types.
    ProcessEnergyValuesCycleTypeMax = 2
} PROCESS_ENERGY_VALUES_CYCLE_TYPE_INDEX, *PPROCESS_ENERGY_VALUES_CYCLE_TYPE_INDEX;

#endif

View code on GitHub

NtDoc

No description available.