diff options
| author | 2017-01-01 19:23:19 -0500 | |
|---|---|---|
| committer | 2017-01-05 13:06:17 -0500 | |
| commit | e52ca85711e8df54c8eafe556b6ba0ca683ddea0 (patch) | |
| tree | 5a5842cdea80d830d4295d9a96cb5ff4bfd9162d /src/core/hle/kernel/timer.h | |
| parent | Merge pull request #2390 from jroweboy/bintray (diff) | |
| download | yuzu-e52ca85711e8df54c8eafe556b6ba0ca683ddea0.tar.gz yuzu-e52ca85711e8df54c8eafe556b6ba0ca683ddea0.tar.xz yuzu-e52ca85711e8df54c8eafe556b6ba0ca683ddea0.zip | |
Kernel: Implemented Pulse event and timers.
Closes #1904
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 18ea0236b..2092165d4 100644 --- a/src/core/hle/kernel/timer.h +++ b/src/core/hle/kernel/timer.h | |||
| @@ -42,6 +42,8 @@ public: | |||
| 42 | bool ShouldWait() override; | 42 | bool ShouldWait() override; |
| 43 | void Acquire() override; | 43 | void Acquire() 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 |