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