summaryrefslogtreecommitdiff
path: root/src/common/x64/cpu_detect.h
diff options
context:
space:
mode:
authorMatías Locatti <matias.locatti@gmail.com>2022-11-11 05:36:47 -0300
committerMatías Locatti <matias.locatti@gmail.com>2022-11-11 23:50:48 -0300
commit69768ec71e78dd1ea8da835b0a4eedbb1d404c28 (patch)
tree6d08d9fb38829e99614c912ee971e98068dbc3d1 /src/common/x64/cpu_detect.h
parent5eb30c7827959075cd240f39c6ab57d2c2a8197e (diff)
Add CPU core count to log files
Diffstat (limited to 'src/common/x64/cpu_detect.h')
-rw-r--r--src/common/x64/cpu_detect.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/x64/cpu_detect.h b/src/common/x64/cpu_detect.h
index 6830f3795..ca8db19d6 100644
--- a/src/common/x64/cpu_detect.h
+++ b/src/common/x64/cpu_detect.h
@@ -4,6 +4,7 @@
#pragma once
+#include <optional>
#include <string_view>
#include "common/common_types.h"
@@ -74,4 +75,7 @@ struct CPUCaps {
*/
const CPUCaps& GetCPUCaps();
+/// Detects CPU core count
+std::optional<int> GetProcessorCount();
+
} // namespace Common