diff options
| author | 2017-01-10 10:45:00 -0500 | |
|---|---|---|
| committer | 2017-01-10 10:45:00 -0500 | |
| commit | 84d72fd92fcd737566efde0cb324c48dcd689997 (patch) | |
| tree | 7b52cc1949f9dc89aaf8f338a4d29624ff82868e /src/core/hle/kernel/timer.h | |
| parent | Merge pull request #2418 from jroweboy/appveyor_master (diff) | |
| parent | Kernel: Implemented Pulse event and timers. (diff) | |
| download | yuzu-84d72fd92fcd737566efde0cb324c48dcd689997.tar.gz yuzu-84d72fd92fcd737566efde0cb324c48dcd689997.tar.xz yuzu-84d72fd92fcd737566efde0cb324c48dcd689997.zip | |
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: | |||
| 42 | bool ShouldWait(Thread* thread) const override; | 42 | bool ShouldWait(Thread* thread) const override; |
| 43 | void Acquire(Thread* thread) override; | 43 | void Acquire(Thread* thread) override; |
| 44 | 44 | ||
| 45 | void WakeupAllWaitingThreads() override; | ||
| 46 | |||
| 45 | /** | 47 | /** |
| 46 | * Starts the timer, with the specified initial delay and interval. | 48 | * Starts the timer, with the specified initial delay and interval. |
| 47 | * @param initial Delay until the timer is first fired | 49 | * @param initial Delay until the timer is first fired |