// ndis.h
ULONG NdisSystemActiveProcessorCount(
PKAFFINITY ActiveProcessors
);
View the official Windows Driver Kit DDI referenceNo description available.
The NdisSystemActiveProcessorCount function returns the number of currently active processors in the local computer.
ActiveProcessorsA pointer to a KAFFINITY-typed variable that receives a bitmap that represents the set of currently active processors. In a hot-add environment, this bitmap can change during runtime.
NdisSystemActiveProcessorCount returns the number of currently active processors in the local computer.
An NDIS driver might call the NdisSystemActiveProcessorCount function during initialization before it allocates resources.
NdisSystemActiveProcessorCount is similar to the KeQueryActiveProcessorCount function.
Note NDIS drivers should not use NdisSystemProcessorCount to retrieve the number of currently active processors,
Note NdisSystemActiveProcessorCount might not map processors to the bits in the returned KAFFINITY value consecutively. and NdisSystemActiveProcessorCount might not return the same bitmap every time that it is called.
The value that NdisSystemActiveProcessorCount returns can change at runtime on SKUs that support hot-add CPU functionality.
The Windows Server 2008 Enterprise operating system and the Windows Server 2008 Datacenter operating system support dynamic hardware partitioning. As part of dynamic hardware partitioning, Windows Server 2008 supports hot-add operations for CPUs at runtime. In a hot-add CPU environment, the number of processors might not remain constant during runtime.