hle: kernel: threading: Fix bug with host thread naming.
This commit is contained in:
parent
6ee8340a6b
commit
ff46ef7ea3
|
@ -211,9 +211,8 @@ struct KernelCore::Impl {
|
||||||
KThread* GetHostDummyThread() {
|
KThread* GetHostDummyThread() {
|
||||||
const thread_local auto thread =
|
const thread_local auto thread =
|
||||||
KThread::Create(
|
KThread::Create(
|
||||||
system, ThreadType::Main,
|
system, ThreadType::Main, fmt::format("DummyThread:{}", GetHostThreadId()), 0,
|
||||||
std::string{"DummyThread:" + GetHostThreadId()}, 0, KThread::DefaultThreadPriority,
|
KThread::DefaultThreadPriority, 0, static_cast<u32>(3), 0, nullptr,
|
||||||
0, static_cast<u32>(3), 0, nullptr,
|
|
||||||
[]([[maybe_unused]] void* arg) { UNREACHABLE(); }, nullptr)
|
[]([[maybe_unused]] void* arg) { UNREACHABLE(); }, nullptr)
|
||||||
.Unwrap();
|
.Unwrap();
|
||||||
return thread.get();
|
return thread.get();
|
||||||
|
|
Reference in New Issue