diff options
| author | 2015-06-07 23:39:37 -0400 | |
|---|---|---|
| committer | 2015-06-16 22:34:39 -0400 | |
| commit | 71e8822d23c030311858e6fcc8480b9c52f13f39 (patch) | |
| tree | 0a5f53cbcebc2c98c7c9c224cbc1a91c1b783366 /src/core/hle/kernel/kernel.h | |
| parent | Merge pull request #866 from lioncash/typo (diff) | |
| download | yuzu-71e8822d23c030311858e6fcc8480b9c52f13f39.tar.gz yuzu-71e8822d23c030311858e6fcc8480b9c52f13f39.tar.xz yuzu-71e8822d23c030311858e6fcc8480b9c52f13f39.zip | |
kernel: Fix svcWaitSynch to always acquire requested wait objects.
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
| -rw-r--r-- | src/core/hle/kernel/kernel.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index a5a0f4800..64595f758 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -140,12 +140,6 @@ public: | |||
| 140 | */ | 140 | */ |
| 141 | void RemoveWaitingThread(Thread* thread); | 141 | void RemoveWaitingThread(Thread* thread); |
| 142 | 142 | ||
| 143 | /** | ||
| 144 | * Wake up the next thread waiting on this object | ||
| 145 | * @return Pointer to the thread that was resumed, nullptr if no threads are waiting | ||
| 146 | */ | ||
| 147 | SharedPtr<Thread> WakeupNextThread(); | ||
| 148 | |||
| 149 | /// Wake up all threads waiting on this object | 143 | /// Wake up all threads waiting on this object |
| 150 | void WakeupAllWaitingThreads(); | 144 | void WakeupAllWaitingThreads(); |
| 151 | 145 | ||