summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_process.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-06-10 20:26:54 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-06-11 06:58:04 +0200
commitebd38d66dbdb7fc934f52b9fb0fbb2b862afe7e5 (patch)
tree9bd3486c20b0cfb246b48c31935683d544c396dd /src/core/hle/kernel/k_process.cpp
parentkernel: KLightConditionVariable: Update implementation to 12.x (diff)
downloadyuzu-ebd38d66dbdb7fc934f52b9fb0fbb2b862afe7e5.tar
yuzu-ebd38d66dbdb7fc934f52b9fb0fbb2b862afe7e5.tar.gz
yuzu-ebd38d66dbdb7fc934f52b9fb0fbb2b862afe7e5.tar.bz2
yuzu-ebd38d66dbdb7fc934f52b9fb0fbb2b862afe7e5.tar.lz
yuzu-ebd38d66dbdb7fc934f52b9fb0fbb2b862afe7e5.tar.xz
yuzu-ebd38d66dbdb7fc934f52b9fb0fbb2b862afe7e5.tar.zst
yuzu-ebd38d66dbdb7fc934f52b9fb0fbb2b862afe7e5.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_process.cpp16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/core/hle/kernel/k_process.cpp b/src/core/hle/kernel/k_process.cpp
index 06b8ce151..d1bd98051 100644
--- a/src/core/hle/kernel/k_process.cpp
+++ b/src/core/hle/kernel/k_process.cpp
@@ -201,17 +201,15 @@ bool KProcess::ReleaseUserException(KThread* thread) {
// Remove waiter thread.
s32 num_waiters{};
- KThread* next = thread->RemoveWaiterByKey(
- std::addressof(num_waiters),
- reinterpret_cast<uintptr_t>(std::addressof(exception_thread)));
- if (next != nullptr) {
- if (next->GetState() == ThreadState::Waiting) {
- next->SetState(ThreadState::Runnable);
- } else {
- KScheduler::SetSchedulerUpdateNeeded(kernel);
- }
+ if (KThread* next = thread->RemoveWaiterByKey(
+ std::addressof(num_waiters),
+ reinterpret_cast<uintptr_t>(std::addressof(exception_thread)));
+ next != nullptr) {
+ next->SetState(ThreadState::Runnable);
}
+ KScheduler::SetSchedulerUpdateNeeded(kernel);
+
return true;
} else {
return false;