mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #4490 from lioncash/arbiter
address_arbiter/scheduler: Resolve sign conversion warnings
This commit is contained in:
		
						commit
						5cc2f99fab
					
				@ -81,7 +81,7 @@ ResultCode AddressArbiter::IncrementAndSignalToAddressIfEqual(VAddr address, s32
 | 
				
			|||||||
    do {
 | 
					    do {
 | 
				
			||||||
        current_value = monitor.ExclusiveRead32(current_core, address);
 | 
					        current_value = monitor.ExclusiveRead32(current_core, address);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (current_value != value) {
 | 
					        if (current_value != static_cast<u32>(value)) {
 | 
				
			||||||
            return ERR_INVALID_STATE;
 | 
					            return ERR_INVALID_STATE;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        current_value++;
 | 
					        current_value++;
 | 
				
			||||||
 | 
				
			|||||||
@ -131,7 +131,8 @@ u32 GlobalScheduler::SelectThreads() {
 | 
				
			|||||||
    u32 cores_needing_context_switch{};
 | 
					    u32 cores_needing_context_switch{};
 | 
				
			||||||
    for (u32 core = 0; core < Core::Hardware::NUM_CPU_CORES; core++) {
 | 
					    for (u32 core = 0; core < Core::Hardware::NUM_CPU_CORES; core++) {
 | 
				
			||||||
        Scheduler& sched = kernel.Scheduler(core);
 | 
					        Scheduler& sched = kernel.Scheduler(core);
 | 
				
			||||||
        ASSERT(top_threads[core] == nullptr || top_threads[core]->GetProcessorID() == core);
 | 
					        ASSERT(top_threads[core] == nullptr ||
 | 
				
			||||||
 | 
					               static_cast<u32>(top_threads[core]->GetProcessorID()) == core);
 | 
				
			||||||
        if (update_thread(top_threads[core], sched)) {
 | 
					        if (update_thread(top_threads[core], sched)) {
 | 
				
			||||||
            cores_needing_context_switch |= (1ul << core);
 | 
					            cores_needing_context_switch |= (1ul << core);
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user