mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-31 10:44:49 +01:00 
			
		
		
		
	kernel: signal thread on termination completed
This commit is contained in:
		
							parent
							
								
									bb195c2c2b
								
							
						
					
					
						commit
						dcfe674ed4
					
				| @ -415,10 +415,6 @@ void KThread::StartTermination() { | ||||
|         m_parent->ClearRunningThread(this); | ||||
|     } | ||||
| 
 | ||||
|     // Signal.
 | ||||
|     m_signaled = true; | ||||
|     KSynchronizationObject::NotifyAvailable(); | ||||
| 
 | ||||
|     // Clear previous thread in KScheduler.
 | ||||
|     KScheduler::ClearPreviousThread(m_kernel, this); | ||||
| 
 | ||||
| @ -437,6 +433,13 @@ void KThread::FinishTermination() { | ||||
|         } | ||||
|     } | ||||
| 
 | ||||
|     // Acquire the scheduler lock.
 | ||||
|     KScopedSchedulerLock sl{m_kernel}; | ||||
| 
 | ||||
|     // Signal.
 | ||||
|     m_signaled = true; | ||||
|     KSynchronizationObject::NotifyAvailable(); | ||||
| 
 | ||||
|     // Close the thread.
 | ||||
|     this->Close(); | ||||
| } | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user