summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/synchronization_object.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2020-02-27 03:26:53 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2020-06-27 17:35:17 +0200
commitd4ebb510a05d29befde6556e632413e5b35b9ab5 (patch)
tree309755a4ef21b48f12cca6c40798dccd191cf860 /src/core/hle/kernel/synchronization_object.h
parentSVC: Cleanup old methods. (diff)
downloadyuzu-d4ebb510a05d29befde6556e632413e5b35b9ab5.tar
yuzu-d4ebb510a05d29befde6556e632413e5b35b9ab5.tar.gz
yuzu-d4ebb510a05d29befde6556e632413e5b35b9ab5.tar.bz2
yuzu-d4ebb510a05d29befde6556e632413e5b35b9ab5.tar.lz
yuzu-d4ebb510a05d29befde6556e632413e5b35b9ab5.tar.xz
yuzu-d4ebb510a05d29befde6556e632413e5b35b9ab5.tar.zst
yuzu-d4ebb510a05d29befde6556e632413e5b35b9ab5.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/synchronization_object.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/synchronization_object.h b/src/core/hle/kernel/synchronization_object.h
index 0a0d069e0..a35544ac1 100644
--- a/src/core/hle/kernel/synchronization_object.h
+++ b/src/core/hle/kernel/synchronization_object.h
@@ -68,6 +68,8 @@ public:
/// Get a const reference to the waiting threads list for debug use
const std::vector<std::shared_ptr<Thread>>& GetWaitingThreads() const;
+ void ClearWaitingThreads();
+
protected:
bool is_signaled{}; // Tells if this sync object is signalled;