diff options
| author | bunnei <bunneidev@gmail.com> | 2017-01-10 10:45:00 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-10 10:45:00 -0500 |
| commit | 84d72fd92fcd737566efde0cb324c48dcd689997 (patch) | |
| tree | 7b52cc1949f9dc89aaf8f338a4d29624ff82868e /src/core/hle/kernel/timer.h | |
| parent | 0ae7092ba4aadd80cfd67111a5635e108f0f943b (diff) | |
| parent | e52ca85711e8df54c8eafe556b6ba0ca683ddea0 (diff) | |
Merge pull request #2397 from Subv/pulse
Kernel: Implemented Pulse event and timers.
Diffstat (limited to 'src/core/hle/kernel/timer.h')
| -rw-r--r-- | src/core/hle/kernel/timer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/timer.h b/src/core/hle/kernel/timer.h index 2e3b31b23..c174f5664 100644 --- a/src/core/hle/kernel/timer.h +++ b/src/core/hle/kernel/timer.h @@ -42,6 +42,8 @@ public: bool ShouldWait(Thread* thread) const override; void Acquire(Thread* thread) override; + void WakeupAllWaitingThreads() override; + /** * Starts the timer, with the specified initial delay and interval. * @param initial Delay until the timer is first fired |
