From a3a5d60622eb7330b8d82ff6620d28e3b90c6848 Mon Sep 17 00:00:00 2001 From: Jesse McKenna Date: Fri, 12 Jul 2019 13:32:10 -0700 Subject: Make GetProcessorCount() count processors across all processor groups --- src/util.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/util.cc b/src/util.cc index ee810d6..f80616b 100644 --- a/src/util.cc +++ b/src/util.cc @@ -481,9 +481,7 @@ string StripAnsiEscapeCodes(const string& in) { int GetProcessorCount() { #ifdef _WIN32 - SYSTEM_INFO info; - GetNativeSystemInfo(&info); - return info.dwNumberOfProcessors; + return GetActiveProcessorCount(ALL_PROCESSOR_GROUPS); #else #ifdef CPU_COUNT // The number of exposed processors might not represent the actual number of -- cgit v0.12