mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 13:25:45 +00:00
General: Setup yuzu threads' microprofile, naming and registry.
This commit is contained in:
parent
63bd59669f
commit
9846f5822d
7 changed files with 25 additions and 9 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue