mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-02 02:42:25 -07:00
Name all threads (#886)
* Name all threads Close #874 * use ThreadName instead of ThreadId in Logging
This commit is contained in:
@@ -55,7 +55,10 @@ namespace Ryujinx.Profiler
|
||||
_cleanupRunning = true;
|
||||
|
||||
// Create cleanup thread.
|
||||
_cleanupThread = new Thread(CleanupLoop);
|
||||
_cleanupThread = new Thread(CleanupLoop)
|
||||
{
|
||||
Name = "Profiler.CleanupThread"
|
||||
};
|
||||
_cleanupThread.Start();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user