summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/process.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-04-18 03:46:46 +0200
committerGitHub <noreply@github.com>2019-04-18 03:46:46 +0200
commit83b830eb2f80de8073a7304ab6270621d062d0b2 (patch)
tree40c965879105facd5deb0c65262d993ddbf6c30f /src/core/hle/kernel/process.cpp
parentMerge pull request #2318 from ReinUsesLisp/sampler-cache (diff)
parentsvc: Specify handle value in thread's name (diff)
downloadyuzu-83b830eb2f80de8073a7304ab6270621d062d0b2.tar
yuzu-83b830eb2f80de8073a7304ab6270621d062d0b2.tar.gz
yuzu-83b830eb2f80de8073a7304ab6270621d062d0b2.tar.bz2
yuzu-83b830eb2f80de8073a7304ab6270621d062d0b2.tar.lz
yuzu-83b830eb2f80de8073a7304ab6270621d062d0b2.tar.xz
yuzu-83b830eb2f80de8073a7304ab6270621d062d0b2.tar.zst
yuzu-83b830eb2f80de8073a7304ab6270621d062d0b2.zip
Diffstat (limited to 'src/core/hle/kernel/process.cpp')
-rw-r--r--src/core/hle/kernel/process.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp
index 4e94048da..8b2b3877d 100644
--- a/src/core/hle/kernel/process.cpp
+++ b/src/core/hle/kernel/process.cpp
@@ -40,9 +40,8 @@ void SetupMainThread(Process& owner_process, KernelCore& kernel, VAddr entry_poi
SharedPtr<Thread> thread = std::move(thread_res).Unwrap();
// Register 1 must be a handle to the main thread
- const Handle guest_handle = owner_process.GetHandleTable().Create(thread).Unwrap();
- thread->SetGuestHandle(guest_handle);
- thread->GetContext().cpu_registers[1] = guest_handle;
+ const Handle thread_handle = owner_process.GetHandleTable().Create(thread).Unwrap();
+ thread->GetContext().cpu_registers[1] = thread_handle;
// Threads by default are dormant, wake up the main thread so it runs when the scheduler fires
thread->ResumeFromWait();