mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	mutex: Pass SharedPtr to GetHighestPriorityMutexWaitingThread() by reference
The pointed to thread's members are simply observed in this case, so we don't need to copy it here.
This commit is contained in:
		
							parent
							
								
									f6657bc8d7
								
							
						
					
					
						commit
						42b5158c96
					
				@ -19,7 +19,7 @@ namespace Kernel {
 | 
			
		||||
/// Returns the number of threads that are waiting for a mutex, and the highest priority one among
 | 
			
		||||
/// those.
 | 
			
		||||
static std::pair<SharedPtr<Thread>, u32> GetHighestPriorityMutexWaitingThread(
 | 
			
		||||
    SharedPtr<Thread> current_thread, VAddr mutex_addr) {
 | 
			
		||||
    const SharedPtr<Thread>& current_thread, VAddr mutex_addr) {
 | 
			
		||||
 | 
			
		||||
    SharedPtr<Thread> highest_priority_thread;
 | 
			
		||||
    u32 num_waiters = 0;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user