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;
    };
    ULONG_PTR WorkingSetPageCount;
    ULONG_PTR CommitPageCount;
    union
    {
        ULONG_PTR PagedPoolPageCount;       // Used for SessionWs.
        ULONG_PTR VirtualSizeInPages;       // Used for ProcessWs.
    };
    ULONG_PTR PrivateWorkingSetPageCount;
    ULONG_PTR StoreSizeInPages;
    ULONG_PTR StoredPageCount;
    ULONG_PTR CommitDebtInPages;
    ULONG_PTR SharedCommitInPages;
} PERFINFO_WORKINGSET_ENTRY, *PPERFINFO_WORKINGSET_ENTRY;

#include <poppack.h>
#endif

View code on GitHub

No description available.