hle: kernel: KThread: Rename thread_type_for_debugging -> thread_type.

- This will be used to ensure that we do not schedule dummy threads.
This commit is contained in:
bunnei 2022-01-17 16:41:06 -08:00
parent e781f6e767
commit f6cbb14dce
3 changed files with 6 additions and 6 deletions

View file

@ -140,7 +140,7 @@ ResultCode KThread::Initialize(KThreadFunction func, uintptr_t arg, VAddr user_s
UNREACHABLE_MSG("KThread::Initialize: Unknown ThreadType {}", static_cast<u32>(type));
break;
}
thread_type_for_debugging = type;
thread_type = type;
// Set the ideal core ID and affinity mask.
virtual_ideal_core_id = virt_core;