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/kernel.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/kernel.h')
| -rw-r--r-- | src/core/hle/kernel/kernel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index 9503e7d04..1e68f9cab 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -156,7 +156,7 @@ public: | |||
| 156 | * Wake up all threads waiting on this object that can be awoken, in priority order, | 156 | * Wake up all threads waiting on this object that can be awoken, in priority order, |
| 157 | * and set the synchronization result and output of the thread. | 157 | * and set the synchronization result and output of the thread. |
| 158 | */ | 158 | */ |
| 159 | void WakeupAllWaitingThreads(); | 159 | virtual void WakeupAllWaitingThreads(); |
| 160 | 160 | ||
| 161 | /// Obtains the highest priority thread that is ready to run from this object's waiting list. | 161 | /// Obtains the highest priority thread that is ready to run from this object's waiting list. |
| 162 | SharedPtr<Thread> GetHighestPriorityReadyThread(); | 162 | SharedPtr<Thread> GetHighestPriorityReadyThread(); |