mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	thread: Initialize ideal_core and mask members.
This commit is contained in:
		
							parent
							
								
									8aa5d25f82
								
							
						
					
					
						commit
						4822765fef
					
				@ -266,6 +266,8 @@ ResultVal<SharedPtr<Thread>> Thread::Create(std::string name, VAddr entry_point,
 | 
				
			|||||||
    thread->nominal_priority = thread->current_priority = priority;
 | 
					    thread->nominal_priority = thread->current_priority = priority;
 | 
				
			||||||
    thread->last_running_ticks = CoreTiming::GetTicks();
 | 
					    thread->last_running_ticks = CoreTiming::GetTicks();
 | 
				
			||||||
    thread->processor_id = processor_id;
 | 
					    thread->processor_id = processor_id;
 | 
				
			||||||
 | 
					    thread->ideal_core = processor_id;
 | 
				
			||||||
 | 
					    thread->mask = 1 << processor_id;
 | 
				
			||||||
    thread->wait_objects.clear();
 | 
					    thread->wait_objects.clear();
 | 
				
			||||||
    thread->mutex_wait_address = 0;
 | 
					    thread->mutex_wait_address = 0;
 | 
				
			||||||
    thread->condvar_wait_address = 0;
 | 
					    thread->condvar_wait_address = 0;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user