estructura SOCKET_PROCESSOR_AFFINITY (ws2def.h)

La estructura SOCKET_PROCESSOR_AFFINITY contiene la asociación entre un socket y un núcleo del procesador RSS y un nodo NUMA.

Sintaxis

typedef struct _SOCKET_PROCESSOR_AFFINITY {
  PROCESSOR_NUMBER Processor;
  USHORT           NumaNodeId;
  USHORT           Reserved;
} SOCKET_PROCESSOR_AFFINITY, *PSOCKET_PROCESSOR_AFFINITY;

Miembros

Processor

Estructura que representa un número de procesador ancho del sistema. Esta estructura de PROCESSOR_NUMBER contiene un número de grupo y un número de procesador relativo dentro del grupo.

NumaNodeId

Identificador del nodo NUMA.

Reserved

Valor reservado para uso futuro.

Comentarios

La estructura de SOCKET_PROCESSOR_AFFINITY se admite en Windows 8 y Windows Server 2012 y versiones posteriores del sistema operativo.

El SIO_QUERY_RSS_PROCESSOR_INFO IOCTL se usa para determinar la asociación entre un socket y un núcleo del procesador RSS y un nodo NUMA. Este IOCTL devuelve una estructura de SOCKET_PROCESSOR_AFFINITY que contiene el número de procesador y el identificador del nodo NUMA.

Requisitos

Requisito Value
Cliente mínimo compatible Windows 8 [solo aplicaciones de escritorio]
Servidor mínimo compatible Windows Server 2012 [solo aplicaciones de escritorio]
Encabezado ws2def.h

Consulte también

PROCESSOR_NUMBER

SIO_QUERY_RSS_PROCESSOR_INFO