diff options
| author | 2019-01-30 12:27:02 -0500 | |
|---|---|---|
| committer | 2019-01-30 12:45:00 -0500 | |
| commit | 4596ef5274e05c5e022bd21ba7472ef6ab915eb8 (patch) | |
| tree | 70b1741e66c8ab59bc8efe5605683973fd6dc1fd /src/core/hle/kernel/timer.cpp | |
| parent | kernel/readable_event: Remove unnecessary WakeupAllWaitingThreads() override (diff) | |
| download | yuzu-4596ef5274e05c5e022bd21ba7472ef6ab915eb8.tar.gz yuzu-4596ef5274e05c5e022bd21ba7472ef6ab915eb8.tar.xz yuzu-4596ef5274e05c5e022bd21ba7472ef6ab915eb8.zip | |
kernel/timer: Remove unnecessary WakeupAllWaitingThreads() override
This implementation just calls the base class variant of the function,
so this isn't necessary.
Diffstat (limited to 'src/core/hle/kernel/timer.cpp')
| -rw-r--r-- | src/core/hle/kernel/timer.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/hle/kernel/timer.cpp b/src/core/hle/kernel/timer.cpp index 2c4f50e2b..3afe60469 100644 --- a/src/core/hle/kernel/timer.cpp +++ b/src/core/hle/kernel/timer.cpp | |||
| @@ -66,10 +66,6 @@ void Timer::Clear() { | |||
| 66 | signaled = false; | 66 | signaled = false; |
| 67 | } | 67 | } |
| 68 | 68 | ||
| 69 | void Timer::WakeupAllWaitingThreads() { | ||
| 70 | WaitObject::WakeupAllWaitingThreads(); | ||
| 71 | } | ||
| 72 | |||
| 73 | void Timer::Signal(int cycles_late) { | 69 | void Timer::Signal(int cycles_late) { |
| 74 | LOG_TRACE(Kernel, "Timer {} fired", GetObjectId()); | 70 | LOG_TRACE(Kernel, "Timer {} fired", GetObjectId()); |
| 75 | 71 | ||