mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-11-03 23:28:48 +00:00 
			
		
		
		
	Thread: Check that thread is actually in "wait state" when verifying wait.
This commit is contained in:
		
							parent
							
								
									f985469901
								
							
						
					
					
						commit
						de851ba1a1
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -143,7 +143,7 @@ void ChangeReadyState(Thread* t, bool ready) {
 | 
			
		|||
/// Verify that a thread has not been released from waiting
 | 
			
		||||
inline bool VerifyWait(const Thread* thread, WaitType type, Handle wait_handle) {
 | 
			
		||||
    _dbg_assert_(KERNEL, thread != nullptr);
 | 
			
		||||
    return type == thread->wait_type && wait_handle == thread->wait_handle;
 | 
			
		||||
    return (type == thread->wait_type) && (wait_handle == thread->wait_handle) && (thread->IsWaiting());
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/// Stops the current thread
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue