Name all threads (#886)
* Name all threads Close #874 * use ThreadName instead of ThreadId in Logging
This commit is contained in:
@ -17,7 +17,10 @@ namespace Ryujinx.HLE.HOS.Kernel.Threading
|
||||
|
||||
public void StartAutoPreemptionThread()
|
||||
{
|
||||
Thread preemptionThread = new Thread(PreemptCurrentThread);
|
||||
Thread preemptionThread = new Thread(PreemptCurrentThread)
|
||||
{
|
||||
Name = "HLE.PreemptionThread"
|
||||
};
|
||||
|
||||
_keepPreempting = true;
|
||||
|
||||
|
Reference in New Issue
Block a user