PERFINFO_WORKINGSET_ENTRY - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTWMI_H
//
// Used for MemInfoWS/MemInfoSessionWs event.
//
#include <pshpack1.h>

typedef struct _PERFINFO_WORKINGSET_ENTRY
{
    union
    {
        ULONG UniqueProcessId;
        ULONG SessionId;
    };
    SIZE_T WorkingSetPageCount;
    SIZE_T CommitPageCount;
    union
    {
        SIZE_T PagedPoolPageCount;       // Used for SessionWs.
        SIZE_T VirtualSizeInPages;       // Used for ProcessWs.
    };
    SIZE_T PrivateWorkingSetPageCount;
    SIZE_T StoreSizeInPages;
    SIZE_T StoredPageCount;
    SIZE_T CommitDebtInPages;
    SIZE_T SharedCommitInPages;
} PERFINFO_WORKINGSET_ENTRY, *PPERFINFO_WORKINGSET_ENTRY;

#include <poppack.h>
#endif

View code on GitHub

No description available.