summaryrefslogtreecommitdiff
path: root/src/common/x64/cpu_detect.h
diff options
context:
space:
mode:
authorGravatar Matías Locatti2022-11-11 05:36:47 -0300
committerGravatar Matías Locatti2022-11-11 23:50:48 -0300
commit69768ec71e78dd1ea8da835b0a4eedbb1d404c28 (patch)
tree6d08d9fb38829e99614c912ee971e98068dbc3d1 /src/common/x64/cpu_detect.h
parentMerge pull request #9223 from goldenx86/threadcount (diff)
downloadyuzu-69768ec71e78dd1ea8da835b0a4eedbb1d404c28.tar.gz
yuzu-69768ec71e78dd1ea8da835b0a4eedbb1d404c28.tar.xz
yuzu-69768ec71e78dd1ea8da835b0a4eedbb1d404c28.zip
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 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <optional>
7#include <string_view> 8#include <string_view>
8#include "common/common_types.h" 9#include "common/common_types.h"
9 10
@@ -74,4 +75,7 @@ struct CPUCaps {
74 */ 75 */
75const CPUCaps& GetCPUCaps(); 76const CPUCaps& GetCPUCaps();
76 77
78/// Detects CPU core count
79std::optional<int> GetProcessorCount();
80
77} // namespace Common 81} // namespace Common