diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-02-25 11:12:46 -0400 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-27 11:35:09 -0400 |
commit | dc580582034fb5937aa53176fdaa4bd0fc4acce8 (patch) | |
tree | 6d351a6c3a76fee0a9bc1ab546d07c0583a9d9cd /src/yuzu/bootmanager.cpp | |
parent | a5c58a25ef3ed7975c8466933ca38e03c999b027 (diff) |
General: Setup yuzu threads' microprofile, naming and registry.
Diffstat (limited to 'src/yuzu/bootmanager.cpp')
-rw-r--r-- | src/yuzu/bootmanager.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index 9ceb6c8d73..468dde782c 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -44,7 +44,9 @@ EmuThread::EmuThread() = default; EmuThread::~EmuThread() = default; void EmuThread::run() { - MicroProfileOnThreadCreate("EmuThread"); + std::string name = "yuzu:EmuControlThread"; + MicroProfileOnThreadCreate(name.c_str()); + Common::SetCurrentThreadName(name.c_str()); // Main process has been loaded. Make the context current to this thread and begin GPU and CPU // execution. |