FltGetIoPriorityHintFromThread - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// fltkernel.h

IO_PRIORITY_HINT FLTAPI FltGetIoPriorityHintFromThread(
  [in] PETHREAD Thread
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-fltkernel-fltgetiopriorityhintfromthread)

FltGetIoPriorityHintFromThread function

Description

The FltGetIoPriorityHintFromThread routine is used by a minifilter driver to get IO priority information from a thread.

Parameters

Thread [in]

A pointer to the thread from which to retrieve priority information. This parameter is required and cannot be NULL.

Return value

The FltGetIoPriorityHintFromThread routine returns an IO priority hint retrieved from a thread.

If Thread does not have a priority, the routine returns IoPriorityNormal.

If an error occurs retrieving the priority, the routine returns IoPriorityNormal.

Remarks

This routine is NONPAGED and can be called from paging IO paths.

See also

FLT_CALLBACK_DATA

FltApplyPriorityInfoThread

FltGetIoPriorityHint

FltGetIoPriorityHintFromCallbackData

FltGetIoPriorityHintFromFileObject

FltRetrieveIoPriorityInfo

FltSetIoPriorityHintIntoCallbackData

FltSetIoPriorityHintIntoFileObject

FltSetIoPriorityHintIntoThread

IO_PRIORITY_INFO