Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在尝试将驱动程序中的一些内核线程连接到特定的 NUMA 节点。为此,我需要查询各个处理器的 NUMA 节点。
不幸的是,GetNumaProcessorNodeEx 在驱动程序中不可用(它需要 Windows.h)。该功能的驱动程序等效项是什么?
您可以调用KeQueryLogicalProcessorRelationship并请求 RelationNumaNode。这将为您提供系统中每个 NUMA 节点的关联性。