summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-06-02 04:12:54 +0200
committerbunnei <ericbunnie@gmail.com>2014-06-02 04:12:54 +0200
commit3fb31fbc57fd1d537db79af898ef26c92b0e0867 (patch)
treea4ce54e66ae91c66c0ce55ab32468b3b8ec4d6ab /src/core/hle/kernel/thread.h
parentkernel: changed main thread priority to default, updated Kernel::Reschedule to use PrepareReschedule (diff)
downloadyuzu-3fb31fbc57fd1d537db79af898ef26c92b0e0867.tar
yuzu-3fb31fbc57fd1d537db79af898ef26c92b0e0867.tar.gz
yuzu-3fb31fbc57fd1d537db79af898ef26c92b0e0867.tar.bz2
yuzu-3fb31fbc57fd1d537db79af898ef26c92b0e0867.tar.lz
yuzu-3fb31fbc57fd1d537db79af898ef26c92b0e0867.tar.xz
yuzu-3fb31fbc57fd1d537db79af898ef26c92b0e0867.tar.zst
yuzu-3fb31fbc57fd1d537db79af898ef26c92b0e0867.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/thread.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 9628f165d..094c8d43e 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -65,6 +65,12 @@ Handle GetCurrentThreadHandle();
/// Put current thread in a wait state - on WaitSynchronization
void WaitThread_Synchronization();
+/// Get the priority of the thread specified by handle
+u32 GetThreadPriority(const Handle handle);
+
+/// Set the priority of the thread specified by handle
+Result SetThreadPriority(Handle handle, s32 priority);
+
/// Initialize threading
void ThreadingInit();