summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/kernel.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2016-10-05 05:01:56 +0200
committerGitHub <noreply@github.com>2016-10-05 05:01:56 +0200
commit09c3e444d42856ca0978153dcabcb5c3884877b9 (patch)
tree89732a2264868d7dddc8f4c8355c0afac62b108c /src/core/hle/kernel/kernel.cpp
parentMerge pull request #2106 from wwylele/delete-recursive (diff)
parentmove ResetType to kernel.h (diff)
downloadyuzu-09c3e444d42856ca0978153dcabcb5c3884877b9.tar
yuzu-09c3e444d42856ca0978153dcabcb5c3884877b9.tar.gz
yuzu-09c3e444d42856ca0978153dcabcb5c3884877b9.tar.bz2
yuzu-09c3e444d42856ca0978153dcabcb5c3884877b9.tar.lz
yuzu-09c3e444d42856ca0978153dcabcb5c3884877b9.tar.xz
yuzu-09c3e444d42856ca0978153dcabcb5c3884877b9.tar.zst
yuzu-09c3e444d42856ca0978153dcabcb5c3884877b9.zip
Diffstat (limited to 'src/core/hle/kernel/kernel.cpp')
-rw-r--r--src/core/hle/kernel/kernel.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index 9a2c8ce05..9e1795927 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -40,6 +40,10 @@ void WaitObject::WakeupAllWaitingThreads() {
HLE::Reschedule(__func__);
}
+const std::vector<SharedPtr<Thread>>& WaitObject::GetWaitingThreads() const {
+ return waiting_threads;
+}
+
HandleTable::HandleTable() {
next_generation = 1;
Clear();