summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_thread.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-07-02 18:33:49 +0200
committerLiam <byteslice@airmail.cc>2022-07-02 18:33:49 +0200
commited0319cfed2c99e6366aaf725d96bb28a9332e4d (patch)
tree1598e6d320005e0d177106e28ebc6728234f1f24 /src/core/hle/kernel/k_thread.h
parentMerge pull request #7454 from FernandoS27/new-core-timing (diff)
downloadyuzu-ed0319cfed2c99e6366aaf725d96bb28a9332e4d.tar
yuzu-ed0319cfed2c99e6366aaf725d96bb28a9332e4d.tar.gz
yuzu-ed0319cfed2c99e6366aaf725d96bb28a9332e4d.tar.bz2
yuzu-ed0319cfed2c99e6366aaf725d96bb28a9332e4d.tar.lz
yuzu-ed0319cfed2c99e6366aaf725d96bb28a9332e4d.tar.xz
yuzu-ed0319cfed2c99e6366aaf725d96bb28a9332e4d.tar.zst
yuzu-ed0319cfed2c99e6366aaf725d96bb28a9332e4d.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_thread.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h
index 94c4cd1c8..28cd7ecb0 100644
--- a/src/core/hle/kernel/k_thread.h
+++ b/src/core/hle/kernel/k_thread.h
@@ -729,8 +729,7 @@ private:
[[nodiscard]] static Result InitializeThread(KThread* thread, KThreadFunction func,
uintptr_t arg, VAddr user_stack_top, s32 prio,
s32 core, KProcess* owner, ThreadType type,
- std::function<void(void*)>&& init_func,
- void* init_func_parameter);
+ std::function<void()>&& init_func);
static void RestorePriority(KernelCore& kernel_ctx, KThread* thread);