Freigeben über


STOR_THREAD_PRIORITY-Enumeration (storport.h)

STOR_THREAD_PRIORITY gibt die Priorität für einen vom StorPort-Miniport erstellten Thread an.

Syntax

typedef enum _STOR_THREAD_PRIORITY {
  StorThreadPriorityBackground,
  StorThreadPriorityNormal,
  StorThreadPriorityDelayed,
  StorThreadPriorityCritical,
  StorThreadPrioritySuperCritical,
  StorThreadPriorityHyperCritical,
  StorThreadPriorityRealTime
} STOR_THREAD_PRIORITY, *PSTOR_THREAD_PRIORITY;

Konstanten

 
StorThreadPriorityBackground
Systemprioritätsebene. Die zugewiesene Prioritätsstufe ist 7.
StorThreadPriorityNormal
Systemprioritätsebene. Die zugewiesene Prioritätsstufe ist 8.
StorThreadPriorityDelayed
Gibt einen normalen Workerthread an. Die zugewiesene Prioritätsstufe ist 12.
StorThreadPriorityCritical
Gibt einen Echtzeit-Systemworkerthread an. Die zugewiesene Prioritätsebene ist 13.
StorThreadPrioritySuperCritical
Systemprioritätsebene. Die zugewiesene Prioritätsstufe ist 14.
StorThreadPriorityHyperCritical
Systemprioritätsebene. Die zugewiesene Prioritätsstufe ist 15.
StorThreadPriorityRealTime
Systemprioritätsebene. Die zugewiesene Prioritätsstufe ist 18.

Hinweise

Ein Miniport legt die Threadpriorität fest, wenn storPortCreateSystemThread aufgerufen wird, um einen Thread zu erstellen, und kann die Threadpriorität in StorPortSetPriorityThread ändern.

Jeder Thread hat eine Planungspriorität (seine Threadpriorität). Höhere Werte weisen auf Threads mit höherer Priorität hin.

Allgemeine Informationen finden Sie unter Threadprioritäten .

Anforderungen

Anforderung Wert
Unterstützte Mindestversion (Server) Windows Server 2022
Kopfzeile storport.h

Weitere Informationen

StorPortCreateSystemThread

StorPortSetPriorityThread