diff options
author | Liam <byteslice@airmail.cc> | 2022-11-03 01:21:32 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-11-04 14:18:57 +0100 |
commit | e6fe40428c3260d551ac5c795651e2efcfdfc0ea (patch) | |
tree | 641e807df70e320a0b003ea3e880fe3ecccb08b6 /src/core/hle/kernel/k_thread.h | |
parent | kernel: avoid racy behavior in global suspension (diff) | |
download | yuzu-e6fe40428c3260d551ac5c795651e2efcfdfc0ea.tar yuzu-e6fe40428c3260d551ac5c795651e2efcfdfc0ea.tar.gz yuzu-e6fe40428c3260d551ac5c795651e2efcfdfc0ea.tar.bz2 yuzu-e6fe40428c3260d551ac5c795651e2efcfdfc0ea.tar.lz yuzu-e6fe40428c3260d551ac5c795651e2efcfdfc0ea.tar.xz yuzu-e6fe40428c3260d551ac5c795651e2efcfdfc0ea.tar.zst yuzu-e6fe40428c3260d551ac5c795651e2efcfdfc0ea.zip |
Diffstat (limited to 'src/core/hle/kernel/k_thread.h')
-rw-r--r-- | src/core/hle/kernel/k_thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h index 30aa10c9a..f38c92bff 100644 --- a/src/core/hle/kernel/k_thread.h +++ b/src/core/hle/kernel/k_thread.h @@ -415,7 +415,7 @@ public: static void PostDestroy(uintptr_t arg); - [[nodiscard]] static Result InitializeDummyThread(KThread* thread); + [[nodiscard]] static Result InitializeDummyThread(KThread* thread, KProcess* owner); [[nodiscard]] static Result InitializeMainThread(Core::System& system, KThread* thread, s32 virt_core); |