summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorSebastian Valle <subv2112@gmail.com>2018-12-31 02:32:41 +0100
committerGitHub <noreply@github.com>2018-12-31 02:32:41 +0100
commite5dfbe22ee458dc818e5e56daa7f1a43e6ed7205 (patch)
treed12208284c7f3bff0d24ba5750019307eddccefe /src/core/hle/kernel/thread.h
parentMerge pull request #1847 from ogniK5377/backtrace-break (diff)
parentkernel/process: Start the main thread using the specified ideal core (diff)
downloadyuzu-e5dfbe22ee458dc818e5e56daa7f1a43e6ed7205.tar
yuzu-e5dfbe22ee458dc818e5e56daa7f1a43e6ed7205.tar.gz
yuzu-e5dfbe22ee458dc818e5e56daa7f1a43e6ed7205.tar.bz2
yuzu-e5dfbe22ee458dc818e5e56daa7f1a43e6ed7205.tar.lz
yuzu-e5dfbe22ee458dc818e5e56daa7f1a43e6ed7205.tar.xz
yuzu-e5dfbe22ee458dc818e5e56daa7f1a43e6ed7205.tar.zst
yuzu-e5dfbe22ee458dc818e5e56daa7f1a43e6ed7205.zip
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h23
1 files changed, 6 insertions, 17 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index fe5398d56..c48b21aba 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -30,12 +30,12 @@ enum ThreadPriority : u32 {
};
enum ThreadProcessorId : s32 {
- THREADPROCESSORID_DEFAULT = -2, ///< Run thread on default core specified by exheader
- THREADPROCESSORID_0 = 0, ///< Run thread on core 0
- THREADPROCESSORID_1 = 1, ///< Run thread on core 1
- THREADPROCESSORID_2 = 2, ///< Run thread on core 2
- THREADPROCESSORID_3 = 3, ///< Run thread on core 3
- THREADPROCESSORID_MAX = 4, ///< Processor ID must be less than this
+ THREADPROCESSORID_IDEAL = -2, ///< Run thread on the ideal core specified by the process.
+ THREADPROCESSORID_0 = 0, ///< Run thread on core 0
+ THREADPROCESSORID_1 = 1, ///< Run thread on core 1
+ THREADPROCESSORID_2 = 2, ///< Run thread on core 2
+ THREADPROCESSORID_3 = 3, ///< Run thread on core 3
+ THREADPROCESSORID_MAX = 4, ///< Processor ID must be less than this
/// Allowed CPU mask
THREADPROCESSORID_DEFAULT_MASK = (1 << THREADPROCESSORID_0) | (1 << THREADPROCESSORID_1) |
@@ -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();