KeAddTriageDumpDataBlock - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdm.h

NTSTATUS KeAddTriageDumpDataBlock(
  [_Inout_] PKTRIAGE_DUMP_DATA_ARRAY KtriageDumpDataArray,
            PVOID                    Address,
  [_In_]    SIZE_T                   Size
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-wdm-keaddtriagedumpdatablock)

KeAddTriageDumpDataBlock function

Description

Adds a triage dump data block to a triage dump data block array.

Parameters

KtriageDumpDataArray [_Inout_]

A pointer to a KTRIAGE_DUMP_DATA_ARRAY structure that is the data block array. It is assumed that the caller has already obtained exclusive write to _KtriageDumpDataArray_.

Address

[_In_] A ULONG_PTR that is the starting address of the data block.

Size [_In_]

The size of the data block, in bytes.

Return value

Returns STATUS_SUCCESS if the data block was successfully added. Otherwise returns an appropriate NTSTATUS value.

Remarks

The array must have already been initialized by calling KeInitializeTriageDumpDataArray.

See also

KBUGCHECK_REASON_CALLBACK_ROUTINE