mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	Merge pull request #466 from Subv/wake
Thread: Prevent waking a thread multiple times.
This commit is contained in:
		@@ -263,6 +263,9 @@ void WakeThreadAfterDelay(Thread* thread, s64 nanoseconds) {
 | 
			
		||||
 | 
			
		||||
/// Resumes a thread from waiting by marking it as "ready"
 | 
			
		||||
void Thread::ResumeFromWait() {
 | 
			
		||||
    // Cancel any outstanding wakeup events
 | 
			
		||||
    CoreTiming::UnscheduleEvent(ThreadWakeupEventType, GetHandle());
 | 
			
		||||
 | 
			
		||||
    status &= ~THREADSTATUS_WAIT;
 | 
			
		||||
    wait_object = nullptr;
 | 
			
		||||
    wait_type = WAITTYPE_NONE;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user