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;

Membri

List

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

NumBlocksUsed

NumBlocksTotal

DataSize

MaxDataSize

ComponentNameBufferLength

ComponentName

Blocks[ANYSIZE_ARRAY]

Osservazioni

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

Fabbisogno

Requisito Valore
client minimo supportato Windows 10, versione 1803
intestazione wdm.h

Vedere anche

KBUGCHECK_REASON_CALLBACK_ROUTINE