Funzione FltGetRequestorProcessIdEx (fltkernel.h)

La routine FltGetRequestorProcessIdEx restituisce l'handle in modalità kernel per il processo associato al thread che ha richiesto una determinata operazione di I/O.

Sintassi

HANDLE FLTAPI FltGetRequestorProcessIdEx(
  [in] PFLT_CALLBACK_DATA CallbackData
);

Parametri

[in] CallbackData

Puntatore a una struttura FLT_CALLBACK_DATA che identifica il thread e l'operazione di I/O.

Valore restituito

La routine FltGetRequestorProcessIdEx restituisce l'handle in modalità kernel per il processo associato al thread che ha originariamente richiesto l'operazione di I/O. Se l'operazione non è associata ad alcun thread, FltGetRequestorProcessIdEx restituisce NULL.

Commenti

La routine FltGetRequestorProcessIdEx restituisce l'handle in modalità kernel per il processo a cui è attualmente collegato il thread richiedente. Questo processo può essere o meno lo stesso processo che ha creato il thread.

Requisiti

Requisito Valore
Client minimo supportato Disponibile in Microsoft Vista o versioni successive del sistema operativo Windows.
Piattaforma di destinazione Universale
Intestazione fltkernel.h (include Fltkernel.h)
Libreria FltMgr.lib
DLL Fltmgr.sys
IRQL <= DISPATCH_LEVEL

Vedi anche

FLT_CALLBACK_DATA

FltGetRequestorProcess