Преглед изворни кода

Merge pull request #957 from Subv/hwtest_crash

Kernel/Scheduling: Clean up a thread's wait_objects when its scheduled.
bunnei пре 11 година
родитељ
комит
dcc8f1bef2
1 измењених фајлова са 8 додато и 0 уклоњено
  1. 8 0
      src/core/hle/kernel/thread.cpp

+ 8 - 0
src/core/hle/kernel/thread.cpp

@@ -217,6 +217,14 @@ static void SwitchContext(Thread* new_thread) {
             new_thread->context.pc -= thumb_mode ? 2 : 4;
             new_thread->context.pc -= thumb_mode ? 2 : 4;
         }
         }
 
 
+        // Clean up the thread's wait_objects, they'll be restored if needed during
+        // the svcWaitSynchronization call
+        for (int i = 0; i < new_thread->wait_objects.size(); ++i) {
+            SharedPtr<WaitObject> object = new_thread->wait_objects[i];
+            object->RemoveWaitingThread(new_thread);
+        }
+        new_thread->wait_objects.clear();
+
         ready_queue.remove(new_thread->current_priority, new_thread);
         ready_queue.remove(new_thread->current_priority, new_thread);
         new_thread->status = THREADSTATUS_RUNNING;
         new_thread->status = THREADSTATUS_RUNNING;