diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-15 21:54:25 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-15 21:56:18 +0200 |
commit | 3283aa1e20a4d65bdcc8bca05a6c4e35641053e0 (patch) | |
tree | 74091d63e6635c2194cfbf3449726d12dac3a698 /src/core | |
parent | kernel/thread: Remove unused guest_handle member variable (diff) | |
download | yuzu-3283aa1e20a4d65bdcc8bca05a6c4e35641053e0.tar yuzu-3283aa1e20a4d65bdcc8bca05a6c4e35641053e0.tar.gz yuzu-3283aa1e20a4d65bdcc8bca05a6c4e35641053e0.tar.bz2 yuzu-3283aa1e20a4d65bdcc8bca05a6c4e35641053e0.tar.lz yuzu-3283aa1e20a4d65bdcc8bca05a6c4e35641053e0.tar.xz yuzu-3283aa1e20a4d65bdcc8bca05a6c4e35641053e0.tar.zst yuzu-3283aa1e20a4d65bdcc8bca05a6c4e35641053e0.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 7 | ||||
-rw-r--r-- | src/core/hle/kernel/thread.h | 5 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index f57677636..58d33bb8e 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -1244,10 +1244,9 @@ static ResultCode CreateThread(Core::System& system, Handle* out_handle, VAddr e return ERR_INVALID_THREAD_PRIORITY; } - const std::string name = fmt::format("thread-{:X}", entry_point); auto& kernel = system.Kernel(); CASCADE_RESULT(SharedPtr<Thread> thread, - Thread::Create(kernel, name, entry_point, priority, arg, processor_id, stack_top, + Thread::Create(kernel, "", entry_point, priority, arg, processor_id, stack_top, *current_process)); const auto new_thread_handle = current_process->GetHandleTable().Create(thread); @@ -1258,6 +1257,10 @@ static ResultCode CreateThread(Core::System& system, Handle* out_handle, VAddr e } *out_handle = *new_thread_handle; + // Set the thread name for debugging purposes. + thread->SetName( + fmt::format("thread[entry_point={:X}, handle={:X}]", entry_point, *new_thread_handle)); + system.CpuCore(thread->GetProcessorID()).PrepareReschedule(); return RESULT_SUCCESS; diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index e14b84a81..31d48325d 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h @@ -102,6 +102,11 @@ public: std::string GetName() const override { return name; } + + void SetName(std::string new_name) { + name = std::move(new_name); + } + std::string GetTypeName() const override { return "Thread"; } |