Condividi tramite


struttura KTRIAGE_DUMP_DATA_ARRAY (wdm.h)

Specifica una matrice di percorsi di memoria e lunghezze (intervalli) da conservare nei file di dump di arresto anomalo del sistema.

Sintassi

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

Puntatore a una struttura LIST_ENTRY che rappresenta la voce da aggiungere nella matrice.

NumBlocksUsed

NumBlocksTotal

DataSize

MaxDataSize

ComponentNameBufferLength

ComponentName

Blocks[ANYSIZE_ARRAY]

Commenti

Un driver inizializza questa struttura chiamando la funzione KeInitializeTriageDumpDataArray . Un driver fornisce un puntatore a una struttura di questo tipo quando chiama la funzione KeAddTriageDumpDataBlock .

Requisiti

Requisito Valore
Client minimo supportato Windows 10, versione 1803
Intestazione wdm.h

Vedi anche

KBUGCHECK_REASON_CALLBACK_ROUTINE