diff options
| author | 2016-12-10 13:29:31 -0500 | |
|---|---|---|
| committer | 2016-12-10 13:29:31 -0500 | |
| commit | 406907d57055965780e04769482556995de8c50a (patch) | |
| tree | f9e355eccba394047b32160e8f7574a74f46772b /src/core/hle/kernel/thread.cpp | |
| parent | WaitSynch: Removed unused variables and reduced SharedPtr copies. (diff) | |
| download | yuzu-406907d57055965780e04769482556995de8c50a.tar.gz yuzu-406907d57055965780e04769482556995de8c50a.tar.xz yuzu-406907d57055965780e04769482556995de8c50a.zip | |
Properly remove a thread from its wait_objects' waitlist when it is awoken by a timeout.
Diffstat (limited to 'src/core/hle/kernel/thread.cpp')
| -rw-r--r-- | src/core/hle/kernel/thread.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp index 49ed9d899..4bbc08516 100644 --- a/src/core/hle/kernel/thread.cpp +++ b/src/core/hle/kernel/thread.cpp | |||
| @@ -277,6 +277,10 @@ static void ThreadWakeupCallback(u64 thread_handle, int cycles_late) { | |||
| 277 | 277 | ||
| 278 | if (thread->status == THREADSTATUS_WAIT_SYNCH || thread->status == THREADSTATUS_WAIT_ARB) { | 278 | if (thread->status == THREADSTATUS_WAIT_SYNCH || thread->status == THREADSTATUS_WAIT_ARB) { |
| 279 | thread->wait_set_output = false; | 279 | thread->wait_set_output = false; |
| 280 | // Remove the thread from each of its waiting objects' waitlists | ||
| 281 | for (auto& object : thread->wait_objects) | ||
| 282 | object->RemoveWaitingThread(thread.get()); | ||
| 283 | thread->wait_objects.clear(); | ||
| 280 | thread->SetWaitSynchronizationResult(ResultCode(ErrorDescription::Timeout, ErrorModule::OS, | 284 | thread->SetWaitSynchronizationResult(ResultCode(ErrorDescription::Timeout, ErrorModule::OS, |
| 281 | ErrorSummary::StatusChanged, | 285 | ErrorSummary::StatusChanged, |
| 282 | ErrorLevel::Info)); | 286 | ErrorLevel::Info)); |