struttura STOR_GROUP_AFFINITY (storport.h)

La struttura STOR_GROUP_AFFINITY specifica un numero di gruppo e l'affinità del processore all'interno di tale gruppo.

Sintassi

typedef struct _STOR_GROUP_AFFINITY {
  STOR_AFFINITY Mask;
  USHORT        Group;
  USHORT        Reserved[3];
} STOR_GROUP_AFFINITY, *PSTOR_GROUP_AFFINITY;

Members

Mask

Valore STOR_AFFINITY che specifica la maschera di affinità. I bit nella maschera di affinità identificano un set di processori all'interno del gruppo identificato da Group.

Group

Specifica il numero di gruppo.

Reserved[3]

Riservato per utilizzi futuri. Impostare tutti e tre gli elementi della matrice riservata su zero.

Commenti

Una struttura STOR_GROUP_AFFINITY descrive un'affinità di thread, ovvero un set di processori in cui è consentito eseguire un thread. Mask contiene una maschera di affinità che identifica i processori nel set. Tutti i processori in questo set appartengono al gruppo identificato dal membro Group della struttura.

Le routine StorPortSetSystemGroupAffinityThread e StorPortRevertToUserGroupAffinityThread usano strutture STOR_GROUP_AFFINITY per specificare le affinità dei thread.

Requisiti

Requisito Valore
Server minimo supportato Windows Server 2022
Intestazione storport.h

Vedi anche

StorPortRevertToUserGroupAffinityThread

StorPortSetSystemGroupAffinityThread