Kernel: Corrections to Wait Objects clearing in which a thread could still be signalled after a timeout or a cancel.

This commit is contained in:
Fernando Sahmkow 2019-10-10 08:04:14 -04:00 committed by FernandoS27
parent 248795db6e
commit 3da21e4b4f
3 changed files with 4 additions and 3 deletions

View file

@ -133,6 +133,7 @@ void Thread::ResumeFromWait() {
void Thread::CancelWait() {
ASSERT(GetStatus() == ThreadStatus::WaitSynch);
ClearWaitObjects();
SetWaitSynchronizationResult(ERR_SYNCHRONIZATION_CANCELED);
ResumeFromWait();
}