mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 22:00:05 +00:00 
			
		
		
		
	Mutex: Changed behavior to always release mutex for all threads.
This commit is contained in:
		
							parent
							
								
									bb730855e5
								
							
						
					
					
						commit
						a449e0e11a
					
				
					 1 changed files with 7 additions and 8 deletions
				
			
		|  | @ -88,20 +88,19 @@ bool ReleaseMutexForThread(Mutex* mutex, Handle thread) { | ||||||
| 
 | 
 | ||||||
| bool ReleaseMutex(Mutex* mutex) { | bool ReleaseMutex(Mutex* mutex) { | ||||||
|     MutexEraseLock(mutex); |     MutexEraseLock(mutex); | ||||||
|     bool woke_threads = false; |  | ||||||
| 
 | 
 | ||||||
|     // Find the next waiting thread for the mutex...
 |     // Find the next waiting thread for the mutex...
 | ||||||
|     while (!woke_threads && !mutex->waiting_threads.empty()) { |     while (!mutex->waiting_threads.empty()) { | ||||||
|         std::vector<Handle>::iterator iter = mutex->waiting_threads.begin(); |         std::vector<Handle>::iterator iter = mutex->waiting_threads.begin(); | ||||||
|         woke_threads |= ReleaseMutexForThread(mutex, *iter); |         ReleaseMutexForThread(mutex, *iter); | ||||||
|         mutex->waiting_threads.erase(iter); |         mutex->waiting_threads.erase(iter); | ||||||
|     } |     } | ||||||
|  | 
 | ||||||
|     // Reset mutex lock thread handle, nothing is waiting
 |     // Reset mutex lock thread handle, nothing is waiting
 | ||||||
|     if (!woke_threads) { |     mutex->locked = false; | ||||||
|         mutex->locked = false; |     mutex->lock_thread = -1; | ||||||
|         mutex->lock_thread = -1; | 
 | ||||||
|     } |     return true; | ||||||
|     return woke_threads; |  | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| /**
 | /**
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue