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 #2620 from FernandoS27/syscore_error
Refined thread launch on syscore error messages
This commit is contained in:
		
						commit
						709e4fa5d2
					
				@ -556,11 +556,21 @@ static ResultCode CreateThread(Kernel::Handle* out_handle, s32 priority, u32 ent
 | 
				
			|||||||
        break;
 | 
					        break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (processor_id == THREADPROCESSORID_1 || processor_id == THREADPROCESSORID_ALL ||
 | 
					    if (processor_id == THREADPROCESSORID_ALL) {
 | 
				
			||||||
        (processor_id == THREADPROCESSORID_DEFAULT &&
 | 
					        LOG_INFO(Kernel_SVC,
 | 
				
			||||||
         Kernel::g_current_process->ideal_processor == THREADPROCESSORID_1)) {
 | 
					                 "Newly created thread is allowed to be run in any Core, unimplemented.");
 | 
				
			||||||
        LOG_WARNING(Kernel_SVC,
 | 
					    }
 | 
				
			||||||
                    "Newly created thread is allowed to be run in the SysCore, unimplemented.");
 | 
					
 | 
				
			||||||
 | 
					    if (processor_id == THREADPROCESSORID_DEFAULT &&
 | 
				
			||||||
 | 
					        Kernel::g_current_process->ideal_processor == THREADPROCESSORID_1) {
 | 
				
			||||||
 | 
					        LOG_WARNING(
 | 
				
			||||||
 | 
					            Kernel_SVC,
 | 
				
			||||||
 | 
					            "Newly created thread is allowed to be run in the SysCore (Core1), unimplemented.");
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    if (processor_id == THREADPROCESSORID_1) {
 | 
				
			||||||
 | 
					        LOG_ERROR(Kernel_SVC,
 | 
				
			||||||
 | 
					                  "Newly created thread must run in the SysCore (Core1), unimplemented.");
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    CASCADE_RESULT(SharedPtr<Thread> thread, Kernel::Thread::Create(name, entry_point, priority,
 | 
					    CASCADE_RESULT(SharedPtr<Thread> thread, Kernel::Thread::Create(name, entry_point, priority,
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user