diff options
author | Lioncash <mathew1800@gmail.com> | 2018-12-28 02:28:15 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-12-28 02:32:30 +0100 |
commit | 771431f62539a991cc4d8cf5dc4908bb5b366da2 (patch) | |
tree | db724de34e5e8a8326ce1a061553520cbd157944 /src/core/hle/kernel/thread.h | |
parent | Merge pull request #1951 from Tinob/master (diff) | |
download | yuzu-771431f62539a991cc4d8cf5dc4908bb5b366da2.tar yuzu-771431f62539a991cc4d8cf5dc4908bb5b366da2.tar.gz yuzu-771431f62539a991cc4d8cf5dc4908bb5b366da2.tar.bz2 yuzu-771431f62539a991cc4d8cf5dc4908bb5b366da2.tar.lz yuzu-771431f62539a991cc4d8cf5dc4908bb5b366da2.tar.xz yuzu-771431f62539a991cc4d8cf5dc4908bb5b366da2.tar.zst yuzu-771431f62539a991cc4d8cf5dc4908bb5b366da2.zip |
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r-- | src/core/hle/kernel/thread.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index fe5398d56..cc68eed2f 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h @@ -456,17 +456,6 @@ private: }; /** - * Sets up the primary application thread - * @param kernel The kernel instance to create the main thread under. - * @param entry_point The address at which the thread should start execution - * @param priority The priority to give the main thread - * @param owner_process The parent process for the main thread - * @return A shared pointer to the main thread - */ -SharedPtr<Thread> SetupMainThread(KernelCore& kernel, VAddr entry_point, u32 priority, - Process& owner_process); - -/** * Gets the current thread */ Thread* GetCurrentThread(); |