mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.
This commit is contained in:
		
							parent
							
								
									8cac527c94
								
							
						
					
					
						commit
						780a443b08
					
				
					 1 changed files with 1 additions and 2 deletions
				
			
		|  | @ -100,11 +100,10 @@ bool ReleaseMutexForThread(Mutex* mutex, Handle thread) { | ||||||
| bool ReleaseMutex(Mutex* mutex) { | bool ReleaseMutex(Mutex* mutex) { | ||||||
|     MutexEraseLock(mutex); |     MutexEraseLock(mutex); | ||||||
|     bool woke_threads = false; |     bool woke_threads = false; | ||||||
|     std::vector<Handle>::iterator iter; |  | ||||||
| 
 | 
 | ||||||
|     // Find the next waiting thread for the mutex...
 |     // Find the next waiting thread for the mutex...
 | ||||||
|     while (!woke_threads && !mutex->waiting_threads.empty()) { |     while (!woke_threads && !mutex->waiting_threads.empty()) { | ||||||
|         iter = mutex->waiting_threads.begin(); |         std::vector<Handle>::iterator iter = mutex->waiting_threads.begin(); | ||||||
|         woke_threads |= ReleaseMutexForThread(mutex, *iter); |         woke_threads |= ReleaseMutexForThread(mutex, *iter); | ||||||
|         mutex->waiting_threads.erase(iter); |         mutex->waiting_threads.erase(iter); | ||||||
|     } |     } | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue