summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-01-30 18:26:11 +0100
committerLioncash <mathew1800@gmail.com>2019-01-30 18:45:00 +0100
commit1a302d4d473a80164082b7c8ecc44de0c08442ad (patch)
treea8ab3cce117f34e6ccbaa3ec8af6e422adffef70 /src/core/hle
parentMerge pull request #2076 from lioncash/enc (diff)
downloadyuzu-1a302d4d473a80164082b7c8ecc44de0c08442ad.tar
yuzu-1a302d4d473a80164082b7c8ecc44de0c08442ad.tar.gz
yuzu-1a302d4d473a80164082b7c8ecc44de0c08442ad.tar.bz2
yuzu-1a302d4d473a80164082b7c8ecc44de0c08442ad.tar.lz
yuzu-1a302d4d473a80164082b7c8ecc44de0c08442ad.tar.xz
yuzu-1a302d4d473a80164082b7c8ecc44de0c08442ad.tar.zst
yuzu-1a302d4d473a80164082b7c8ecc44de0c08442ad.zip
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/kernel/readable_event.cpp4
-rw-r--r--src/core/hle/kernel/readable_event.h2
2 files changed, 0 insertions, 6 deletions
diff --git a/src/core/hle/kernel/readable_event.cpp b/src/core/hle/kernel/readable_event.cpp
index 6973e580c..0e5083f70 100644
--- a/src/core/hle/kernel/readable_event.cpp
+++ b/src/core/hle/kernel/readable_event.cpp
@@ -44,8 +44,4 @@ ResultCode ReadableEvent::Reset() {
return RESULT_SUCCESS;
}
-void ReadableEvent::WakeupAllWaitingThreads() {
- WaitObject::WakeupAllWaitingThreads();
-}
-
} // namespace Kernel
diff --git a/src/core/hle/kernel/readable_event.h b/src/core/hle/kernel/readable_event.h
index 80b3b0aba..77a9c362c 100644
--- a/src/core/hle/kernel/readable_event.h
+++ b/src/core/hle/kernel/readable_event.h
@@ -39,8 +39,6 @@ public:
bool ShouldWait(Thread* thread) const override;
void Acquire(Thread* thread) override;
- void WakeupAllWaitingThreads() override;
-
/// Unconditionally clears the readable event's state.
void Clear();