summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorLC <mathew1800@gmail.com>2020-08-31 15:31:48 -0400
committerGitHub <noreply@github.com>2020-08-31 15:31:48 -0400
commitb5ed2d408c45720d88d47fd6fe79d7858edd4523 (patch)
treed68f7d4d4994c2e51a04ae3a9390b6ef3dcb5c78 /src/core
parent0090d3d087e60dec0c2f1d2545d841413a5498a6 (diff)
parentd37f0b29e26b0e6f655f801423ae6ba4f77fa9df (diff)
Merge pull request #4461 from comex/thread-names
Fix thread naming on Linux, which limits names to 15 bytes.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/cpu_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/cpu_manager.cpp b/src/core/cpu_manager.cpp
index ef0bae556..688b99eba 100644
--- a/src/core/cpu_manager.cpp
+++ b/src/core/cpu_manager.cpp
@@ -328,7 +328,7 @@ void CpuManager::RunThread(std::size_t core) {
system.RegisterCoreThread(core);
std::string name;
if (is_multicore) {
- name = "yuzu:CoreCPUThread_" + std::to_string(core);
+ name = "yuzu:CPUCore_" + std::to_string(core);
} else {
name = "yuzu:CPUThread";
}