Partager via


structure KTRIAGE_DUMP_DATA_ARRAY (wdm.h)

Spécifie un tableau d’emplacements de mémoire et de longueurs (plages) à conserver dans les fichiers de vidage sur incident.

Syntaxe

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;

Membres

List

Pointeur vers une structure LIST_ENTRY qui représente l’entrée à ajouter dans le tableau.

NumBlocksUsed

NumBlocksTotal

DataSize

MaxDataSize

ComponentNameBufferLength

ComponentName

Blocks[ANYSIZE_ARRAY]

Remarques

Un pilote initialise cette structure en appelant KeInitializeTriageDumpDataArray fonction. Un pilote fournit un pointeur vers une structure de ce type lorsqu’il appelle la fonction KeAddTriageDumpDataBlock.

Exigences

Exigence Valeur
client minimum pris en charge Windows 10, version 1803
d’en-tête wdm.h

Voir aussi

KBUGCHECK_REASON_CALLBACK_ROUTINE