diff options
| author | 2019-10-10 08:04:14 -0400 | |
|---|---|---|
| committer | 2019-10-15 11:55:20 -0400 | |
| commit | 1c6a11ab142d18c3444629940f183b7c1865a5e2 (patch) | |
| tree | 3441b0285be95f9341852b86c383880151c38704 /src/core/hle/kernel/thread.h | |
| parent | Kernel: Correct redundant yields to only advance time forward. (diff) | |
| download | yuzu-1c6a11ab142d18c3444629940f183b7c1865a5e2.tar.gz yuzu-1c6a11ab142d18c3444629940f183b7c1865a5e2.tar.xz yuzu-1c6a11ab142d18c3444629940f183b7c1865a5e2.zip | |
Kernel: Corrections to Wait Objects clearing in which a thread could still be signalled after a timeout or a cancel.
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index 4d220c4f9..ceb4d5159 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -319,6 +319,9 @@ public: | |||
| 319 | } | 319 | } |
| 320 | 320 | ||
| 321 | void ClearWaitObjects() { | 321 | void ClearWaitObjects() { |
| 322 | for (const auto& waiting_object : wait_objects) { | ||
| 323 | waiting_object->RemoveWaitingThread(this); | ||
| 324 | } | ||
| 322 | wait_objects.clear(); | 325 | wait_objects.clear(); |
| 323 | } | 326 | } |
| 324 | 327 | ||