mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-11-03 20:24:43 +01:00 
			
		
		
		
	Merge pull request #9158 from liamwhite/single-bore
k_thread: fix single core
This commit is contained in:
		
						commit
						d8ff939edc
					
				@ -1185,8 +1185,10 @@ void KThread::RequestDummyThreadWait() {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void KThread::DummyThreadBeginWait() {
 | 
			
		||||
    ASSERT(this->IsDummyThread());
 | 
			
		||||
    ASSERT(!kernel.IsPhantomModeForSingleCore());
 | 
			
		||||
    if (!this->IsDummyThread() || kernel.IsPhantomModeForSingleCore()) {
 | 
			
		||||
        // Occurs in single core mode.
 | 
			
		||||
        return;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    // Block until runnable is no longer false.
 | 
			
		||||
    dummy_thread_runnable.wait(false);
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user