summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-05-11 10:08:47 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-05-11 10:08:47 +0200
commitd16c2bd956a69754e1c2aef6600c10d944638673 (patch)
treed2d6638d66ff1f6aa7f0e341e6ea139b68b6ef24 /src/core/hle/kernel/thread.h
parentMerge pull request #740 from yuriks/gsp-shmem (diff)
downloadyuzu-d16c2bd956a69754e1c2aef6600c10d944638673.tar
yuzu-d16c2bd956a69754e1c2aef6600c10d944638673.tar.gz
yuzu-d16c2bd956a69754e1c2aef6600c10d944638673.tar.bz2
yuzu-d16c2bd956a69754e1c2aef6600c10d944638673.tar.lz
yuzu-d16c2bd956a69754e1c2aef6600c10d944638673.tar.xz
yuzu-d16c2bd956a69754e1c2aef6600c10d944638673.tar.zst
yuzu-d16c2bd956a69754e1c2aef6600c10d944638673.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/thread.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 6891c8c2f..afdaf8511 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -181,12 +181,11 @@ private:
/**
* Sets up the primary application thread
- * @param stack_size The size of the thread's stack
* @param entry_point The address at which the thread should start execution
* @param priority The priority to give the main thread
* @return A shared pointer to the main thread
*/
-SharedPtr<Thread> SetupMainThread(u32 stack_size, u32 entry_point, s32 priority);
+SharedPtr<Thread> SetupMainThread(u32 entry_point, s32 priority);
/**
* Reschedules to the next available thread (call after current thread is suspended)