summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/mutex.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2015-05-19 20:24:30 -0400
committerGravatar bunnei2015-05-20 18:05:47 -0400
commit0b7d2941cf358cfdbfd32b0e5fb8fcca4180336f (patch)
treebce96a583e8069dc22e508df62de6cd03f394efc /src/core/hle/kernel/mutex.cpp
parentMerge pull request #783 from jroweboy/cond-wait (diff)
downloadyuzu-0b7d2941cf358cfdbfd32b0e5fb8fcca4180336f.tar.gz
yuzu-0b7d2941cf358cfdbfd32b0e5fb8fcca4180336f.tar.xz
yuzu-0b7d2941cf358cfdbfd32b0e5fb8fcca4180336f.zip
Kernel: Move reschedules from SVCs to actual mechanisms that reschedule.
Diffstat (limited to 'src/core/hle/kernel/mutex.cpp')
-rw-r--r--src/core/hle/kernel/mutex.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp
index f530217fd..6aa73df86 100644
--- a/src/core/hle/kernel/mutex.cpp
+++ b/src/core/hle/kernel/mutex.cpp
@@ -94,6 +94,8 @@ void Mutex::Release() {
94 ResumeWaitingThread(this); 94 ResumeWaitingThread(this);
95 } 95 }
96 } 96 }
97
98 HLE::Reschedule(__func__);
97} 99}
98 100
99} // namespace 101} // namespace