Sfoglia il codice sorgente

[HLE/Kernel] Dispose the thread wait even on exit

gdkchan 8 anni fa
parent
commit
62b2124c03
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      Ryujinx.Core/OsHle/Handles/KProcessScheduler.cs

+ 2 - 0
Ryujinx.Core/OsHle/Handles/KProcessScheduler.cs

@@ -161,6 +161,8 @@ namespace Ryujinx.Core.OsHle.Handles
                 if (AllThreads.TryRemove(Thread, out SchedulerThread SchedThread))
                 {
                     WaitingToRun[Thread.ProcessorId].Remove(SchedThread);
+
+                    SchedThread.Dispose();
                 }
 
                 SchedulerThread NewThread = WaitingToRun[Thread.ProcessorId].Pop();