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

This commit is contained in:
gdkchan 2018-04-19 01:01:03 -03:00
parent 76a5972378
commit 62b2124c03

View file

@ -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();