Skip to content
Snippets Groups Projects
Commit e850ff63 authored by Lioncash's avatar Lioncash
Browse files

scheduler: Make HaveReadyThreads() a const member function

This function doesn't modify instance state, so the const qualifier can
be added to it.
parent 11470f33
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ Scheduler::~Scheduler() {
}
}
bool Scheduler::HaveReadyThreads() {
bool Scheduler::HaveReadyThreads() const {
std::lock_guard<std::mutex> lock(scheduler_mutex);
return ready_queue.get_first() != nullptr;
}
......
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment