summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorwwylele <wwylele@gmail.com>2016-12-16 11:33:18 +0100
committerwwylele <wwylele@gmail.com>2016-12-16 11:33:18 +0100
commit4c9b80cee389d9b2d4ff3437aa70cda2b1754382 (patch)
treeb5fb8c8be9ad32336b8aa6f8b587b0db245c749a /src/core/hle
parentMerge pull request #2260 from Subv/scheduling (diff)
downloadyuzu-4c9b80cee389d9b2d4ff3437aa70cda2b1754382.tar
yuzu-4c9b80cee389d9b2d4ff3437aa70cda2b1754382.tar.gz
yuzu-4c9b80cee389d9b2d4ff3437aa70cda2b1754382.tar.bz2
yuzu-4c9b80cee389d9b2d4ff3437aa70cda2b1754382.tar.lz
yuzu-4c9b80cee389d9b2d4ff3437aa70cda2b1754382.tar.xz
yuzu-4c9b80cee389d9b2d4ff3437aa70cda2b1754382.tar.zst
yuzu-4c9b80cee389d9b2d4ff3437aa70cda2b1754382.zip
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/kernel/kernel.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index 209d35270..1db8e102f 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -35,7 +35,8 @@ void WaitObject::RemoveWaitingThread(Thread* thread) {
SharedPtr<Thread> WaitObject::GetHighestPriorityReadyThread() {
// Remove the threads that are ready or already running from our waitlist
boost::range::remove_erase_if(waiting_threads, [](const SharedPtr<Thread>& thread) {
- return thread->status == THREADSTATUS_RUNNING || thread->status == THREADSTATUS_READY;
+ return thread->status == THREADSTATUS_RUNNING || thread->status == THREADSTATUS_READY ||
+ thread->status == THREADSTATUS_DEAD;
});
// TODO(Subv): This call should be performed inside the loop below to check if an object can be