Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

KTRIAGE_DUMP_DATA_ARRAY structure (wdm.h)

Specifies an array of memory locations and lengths (ranges) to be preserved in crash dump files.

Syntax

typedef struct _KTRIAGE_DUMP_DATA_ARRAY {
 LIST_ENTRY List;
 ULONG NumBlocksUsed;
 ULONG NumBlocksTotal;
 ULONG DataSize;
 ULONG MaxDataSize;
 ULONG ComponentNameBufferLength;
 PUCHAR ComponentName;
 KADDRESS_RANGE Blocks[ANYSIZE_ARRAY];
} KTRIAGE_DUMP_DATA_ARRAY, *PKTRIAGE_DUMP_DATA_ARRAY;

Members

List

A pointer to a LIST_ENTRY structure that represents the entry to be added in the array.

NumBlocksUsed

NumBlocksTotal

DataSize

MaxDataSize

ComponentNameBufferLength

ComponentName

Blocks[ANYSIZE_ARRAY]

Remarks

A driver initializes this structure by calling KeInitializeTriageDumpDataArray function. A driver provides a pointer to a structure of this type when it calls the KeAddTriageDumpDataBlock function.

Requirements

Requirement Value
Minimum supported client Windows 10, version 1803
Header wdm.h

See also

KBUGCHECK_REASON_CALLBACK_ROUTINE


Feedback

Was this page helpful?

Additional resources