summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2017-01-07 04:01:33 +0100
committerGitHub <noreply@github.com>2017-01-07 04:01:33 +0100
commitb5eac78b43c254b20ef88386b4fdaf0bb6c29fe2 (patch)
treeb5ec9f4c3d520745e15d249e9a102ddefbb22b27 /src/core/hle/kernel/thread.h
parentMerge pull request #2396 from Subv/sema_acquire (diff)
parentKernel: Don't attempt to yield execution in SleepThread(0) if there are no available threads to run. (diff)
downloadyuzu-b5eac78b43c254b20ef88386b4fdaf0bb6c29fe2.tar
yuzu-b5eac78b43c254b20ef88386b4fdaf0bb6c29fe2.tar.gz
yuzu-b5eac78b43c254b20ef88386b4fdaf0bb6c29fe2.tar.bz2
yuzu-b5eac78b43c254b20ef88386b4fdaf0bb6c29fe2.tar.lz
yuzu-b5eac78b43c254b20ef88386b4fdaf0bb6c29fe2.tar.xz
yuzu-b5eac78b43c254b20ef88386b4fdaf0bb6c29fe2.tar.zst
yuzu-b5eac78b43c254b20ef88386b4fdaf0bb6c29fe2.zip
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 6d395585d..c557a2279 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -219,6 +219,11 @@ private:
SharedPtr<Thread> SetupMainThread(u32 entry_point, s32 priority);
/**
+ * Returns whether there are any threads that are ready to run.
+ */
+bool HaveReadyThreads();
+
+/**
* Reschedules to the next available thread (call after current thread is suspended)
*/
void Reschedule();