summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/scheduler.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-12 18:55:56 +0200
committerLioncash <mathew1800@gmail.com>2018-08-12 18:55:58 +0200
commite850ff63bc51eb8ca2ec7b15167315ee648a4f73 (patch)
tree26103fad967b54689685c132dad950dae63c6cf7 /src/core/hle/kernel/scheduler.h
parentthread_queue_list: Make contains() and get_first() const member functions (diff)
downloadyuzu-e850ff63bc51eb8ca2ec7b15167315ee648a4f73.tar
yuzu-e850ff63bc51eb8ca2ec7b15167315ee648a4f73.tar.gz
yuzu-e850ff63bc51eb8ca2ec7b15167315ee648a4f73.tar.bz2
yuzu-e850ff63bc51eb8ca2ec7b15167315ee648a4f73.tar.lz
yuzu-e850ff63bc51eb8ca2ec7b15167315ee648a4f73.tar.xz
yuzu-e850ff63bc51eb8ca2ec7b15167315ee648a4f73.tar.zst
yuzu-e850ff63bc51eb8ca2ec7b15167315ee648a4f73.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/scheduler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/scheduler.h b/src/core/hle/kernel/scheduler.h
index 1a4ee8f36..6a61ef64e 100644
--- a/src/core/hle/kernel/scheduler.h
+++ b/src/core/hle/kernel/scheduler.h
@@ -21,7 +21,7 @@ public:
~Scheduler();
/// Returns whether there are any threads that are ready to run.
- bool HaveReadyThreads();
+ bool HaveReadyThreads() const;
/// Reschedules to the next available thread (call after current thread is suspended)
void Reschedule();