diff options
| author | 2018-08-12 22:13:14 -0400 | |
|---|---|---|
| committer | 2018-08-12 22:13:14 -0400 | |
| commit | 9608f51cdee2dd1d2bb493b02b109b1b280dfc28 (patch) | |
| tree | 5b1d179c66eadc53c0ba534680a91ade726d08be /src/core/hle/kernel | |
| parent | Merge pull request #1042 from Subv/races (diff) | |
| parent | scheduler: Make HaveReadyThreads() a const member function (diff) | |
| download | yuzu-9608f51cdee2dd1d2bb493b02b109b1b280dfc28.tar.gz yuzu-9608f51cdee2dd1d2bb493b02b109b1b280dfc28.tar.xz yuzu-9608f51cdee2dd1d2bb493b02b109b1b280dfc28.zip | |
Merge pull request #1036 from lioncash/thread
scheduler: Make HaveReadyThreads() a const member function
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/scheduler.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/kernel/scheduler.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/scheduler.cpp b/src/core/hle/kernel/scheduler.cpp index 94065c736..e770b9103 100644 --- a/src/core/hle/kernel/scheduler.cpp +++ b/src/core/hle/kernel/scheduler.cpp | |||
| @@ -25,7 +25,7 @@ Scheduler::~Scheduler() { | |||
| 25 | } | 25 | } |
| 26 | } | 26 | } |
| 27 | 27 | ||
| 28 | bool Scheduler::HaveReadyThreads() { | 28 | bool Scheduler::HaveReadyThreads() const { |
| 29 | std::lock_guard<std::mutex> lock(scheduler_mutex); | 29 | std::lock_guard<std::mutex> lock(scheduler_mutex); |
| 30 | return ready_queue.get_first() != nullptr; | 30 | return ready_queue.get_first() != nullptr; |
| 31 | } | 31 | } |
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: | |||
| 21 | ~Scheduler(); | 21 | ~Scheduler(); |
| 22 | 22 | ||
| 23 | /// Returns whether there are any threads that are ready to run. | 23 | /// Returns whether there are any threads that are ready to run. |
| 24 | bool HaveReadyThreads(); | 24 | bool HaveReadyThreads() const; |
| 25 | 25 | ||
| 26 | /// Reschedules to the next available thread (call after current thread is suspended) | 26 | /// Reschedules to the next available thread (call after current thread is suspended) |
| 27 | void Reschedule(); | 27 | void Reschedule(); |