Condividi tramite


Enumerazione PSCREATETHREADNOTIFYTYPE (ntddk.h)

Indica il tipo di notifica del thread. Questa enumerazione viene usata in PsSetCreateThreadNotifyRoutineEx per registrare le notifiche di callback associate alla creazione o all'eliminazione del thread.

Sintassi

typedef enum _PSCREATETHREADNOTIFYTYPE {
  PsCreateThreadNotifyNonSystem,
  PsCreateThreadNotifySubsystems
} PSCREATETHREADNOTIFYTYPE;

Costanti

 
PsCreateThreadNotifyNonSystem
La funzione di callback registrata dal driver viene eseguita nel nuovo thread non di sistema, che consente alla funzione di callback di eseguire attività come l'impostazione del contesto del thread iniziale.
PsCreateThreadNotifySubsystems
Indica che la funzione di callback registrata dal driver viene richiamata per i thread di tutti i sottosistemi. I driver possono chiamare NtQueryInformationThread per determinare il sottosistema sottostante. La query recupera un valore SUBSYSTEM_INFORMATION_TYPE .

Requisiti

Requisito Valore
Client minimo supportato Windows 10 versione 1703
Server minimo supportato Windows Server 2016
Intestazione ntddk.h (include Ntddk.h)

Vedi anche

NtQueryInformationThread

PsSetCreateThreadNotifyRoutineEx

SUBSYSTEM_INFORMATION_TYPE