PROCESS_HANDLE_TRACING_ENTRY - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTPSAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)

typedef struct _PROCESS_HANDLE_TRACING_ENTRY
{
    HANDLE Handle;
    CLIENT_ID ClientId;
    ULONG Type;
    PVOID Stacks[PROCESS_HANDLE_TRACING_MAX_STACKS];
} PROCESS_HANDLE_TRACING_ENTRY, *PPROCESS_HANDLE_TRACING_ENTRY;

#endif
#endif

View code on GitHub

This structure contains a single process handle tracing entry.

Applicable to

Members

Handle

The handle value on which the operation happened.

ClientId

The pair of process and thread IDs that identifies the thread that performed the operation.

Type

The type of the handle operation.

Known values

Stacks

The stack trace of the operation.