diff options
| author | 2023-03-28 09:09:35 -0400 | |
|---|---|---|
| committer | 2023-03-28 09:09:35 -0400 | |
| commit | 40efd2ab56c2296da4524085a133021f7731e67f (patch) | |
| tree | a43b51a4056ad7664346a63f145c889da1f59d16 /src/common/telemetry.cpp | |
| parent | Merge pull request #10002 from german77/log (diff) | |
| parent | telemetry: Add waitpkg instruction (diff) | |
| download | yuzu-40efd2ab56c2296da4524085a133021f7731e67f.tar.gz yuzu-40efd2ab56c2296da4524085a133021f7731e67f.tar.xz yuzu-40efd2ab56c2296da4524085a133021f7731e67f.zip | |
Merge pull request #9982 from Morph1984/tpause
x64: Make use of waitpkg instructions for power efficient sleeps
Diffstat (limited to '')
| -rw-r--r-- | src/common/telemetry.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/telemetry.cpp b/src/common/telemetry.cpp index d26394359..91352912d 100644 --- a/src/common/telemetry.cpp +++ b/src/common/telemetry.cpp | |||
| @@ -97,6 +97,7 @@ void AppendCPUInfo(FieldCollection& fc) { | |||
| 97 | add_field("CPU_Extension_x64_PCLMULQDQ", caps.pclmulqdq); | 97 | add_field("CPU_Extension_x64_PCLMULQDQ", caps.pclmulqdq); |
| 98 | add_field("CPU_Extension_x64_POPCNT", caps.popcnt); | 98 | add_field("CPU_Extension_x64_POPCNT", caps.popcnt); |
| 99 | add_field("CPU_Extension_x64_SHA", caps.sha); | 99 | add_field("CPU_Extension_x64_SHA", caps.sha); |
| 100 | add_field("CPU_Extension_x64_WAITPKG", caps.waitpkg); | ||
| 100 | #else | 101 | #else |
| 101 | fc.AddField(FieldType::UserSystem, "CPU_Model", "Other"); | 102 | fc.AddField(FieldType::UserSystem, "CPU_Model", "Other"); |
| 102 | #endif | 103 | #endif |