summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorGravatar Liam2022-11-02 20:21:32 -0400
committerGravatar Liam2022-11-04 09:18:57 -0400
commite6fe40428c3260d551ac5c795651e2efcfdfc0ea (patch)
tree641e807df70e320a0b003ea3e880fe3ecccb08b6 /src/core/hle/kernel/kernel.h
parentkernel: avoid racy behavior in global suspension (diff)
downloadyuzu-e6fe40428c3260d551ac5c795651e2efcfdfc0ea.tar.gz
yuzu-e6fe40428c3260d551ac5c795651e2efcfdfc0ea.tar.xz
yuzu-e6fe40428c3260d551ac5c795651e2efcfdfc0ea.zip
service_thread: register service threads to the logical owner process
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index 4ae6b3923..8a21568f7 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -236,7 +236,7 @@ public:
236 void RegisterCoreThread(std::size_t core_id); 236 void RegisterCoreThread(std::size_t core_id);
237 237
238 /// Register the current thread as a non CPU core thread. 238 /// Register the current thread as a non CPU core thread.
239 void RegisterHostThread(); 239 void RegisterHostThread(KThread* existing_thread = nullptr);
240 240
241 /// Gets the virtual memory manager for the kernel. 241 /// Gets the virtual memory manager for the kernel.
242 KMemoryManager& MemoryManager(); 242 KMemoryManager& MemoryManager();