aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/timer.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-01-31 15:19:02 -0500
committerGitHub <noreply@github.com>2019-01-31 15:19:02 -0500
commitdb21ac262774029a7b844e626a6474202263f9aa (patch)
treeed14b003d8ec872cd3d815fd5b372c4e64eb9a01 /src/core/hle/kernel/timer.cpp
parentd6f5f5cafa4e7a2769f3515260d4e2b373ede3b9 (diff)
parenta3cdd773c34ccfbfaa4a59724d94b6d8ca7c64e7 (diff)
Merge pull request #2077 from lioncash/virt
kernel/wait_object: Devirtualize functions related to manipulating the thread list directly
Diffstat (limited to 'src/core/hle/kernel/timer.cpp')
-rw-r--r--src/core/hle/kernel/timer.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/hle/kernel/timer.cpp b/src/core/hle/kernel/timer.cpp
index 2c4f50e2b1..3afe60469f 100644
--- a/src/core/hle/kernel/timer.cpp
+++ b/src/core/hle/kernel/timer.cpp
@@ -66,10 +66,6 @@ void Timer::Clear() {
signaled = false;
}
-void Timer::WakeupAllWaitingThreads() {
- WaitObject::WakeupAllWaitingThreads();
-}
-
void Timer::Signal(int cycles_late) {
LOG_TRACE(Kernel, "Timer {} fired", GetObjectId());