summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_process.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-07-07 23:31:49 +0200
committerGitHub <noreply@github.com>2022-07-07 23:31:49 +0200
commit7e75593c20bd0ad3cbb4915ee18bc7a3392f5651 (patch)
treef0d9c1ffb8093eb36d05cee6f694d343e9d5edf8 /src/core/hle/kernel/k_process.cpp
parentMerge pull request #8492 from german77/no_more_errors (diff)
parentkernel: clean up waiting implementation (diff)
downloadyuzu-7e75593c20bd0ad3cbb4915ee18bc7a3392f5651.tar
yuzu-7e75593c20bd0ad3cbb4915ee18bc7a3392f5651.tar.gz
yuzu-7e75593c20bd0ad3cbb4915ee18bc7a3392f5651.tar.bz2
yuzu-7e75593c20bd0ad3cbb4915ee18bc7a3392f5651.tar.lz
yuzu-7e75593c20bd0ad3cbb4915ee18bc7a3392f5651.tar.xz
yuzu-7e75593c20bd0ad3cbb4915ee18bc7a3392f5651.tar.zst
yuzu-7e75593c20bd0ad3cbb4915ee18bc7a3392f5651.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_process.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_process.cpp b/src/core/hle/kernel/k_process.cpp
index 183c693e3..b662788b3 100644
--- a/src/core/hle/kernel/k_process.cpp
+++ b/src/core/hle/kernel/k_process.cpp
@@ -161,7 +161,7 @@ bool KProcess::ReleaseUserException(KThread* thread) {
std::addressof(num_waiters),
reinterpret_cast<uintptr_t>(std::addressof(exception_thread)));
next != nullptr) {
- next->SetState(ThreadState::Runnable);
+ next->EndWait(ResultSuccess);
}
KScheduler::SetSchedulerUpdateNeeded(kernel);