diff options
| author | 2018-11-18 23:44:19 -0500 | |
|---|---|---|
| committer | 2018-11-18 23:44:19 -0500 | |
| commit | 409dcf0e0aecfdb676fd3b64223a25e47c1b1c1a (patch) | |
| tree | ccb9eae7c7e8b93760f3087fb6e67a13cbb24f2c /src/core/hle/kernel/scheduler.h | |
| parent | Merge pull request #1717 from FreddyFunk/swizzle-gob (diff) | |
| download | yuzu-409dcf0e0aecfdb676fd3b64223a25e47c1b1c1a.tar.gz yuzu-409dcf0e0aecfdb676fd3b64223a25e47c1b1c1a.tar.xz yuzu-409dcf0e0aecfdb676fd3b64223a25e47c1b1c1a.zip | |
svc: Implement yield types 0 and -1
Diffstat (limited to 'src/core/hle/kernel/scheduler.h')
| -rw-r--r-- | src/core/hle/kernel/scheduler.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/kernel/scheduler.h b/src/core/hle/kernel/scheduler.h index c63032b7d..8444afdbc 100644 --- a/src/core/hle/kernel/scheduler.h +++ b/src/core/hle/kernel/scheduler.h | |||
| @@ -48,9 +48,15 @@ public: | |||
| 48 | /// Unschedules a thread that was already scheduled | 48 | /// Unschedules a thread that was already scheduled |
| 49 | void UnscheduleThread(Thread* thread, u32 priority); | 49 | void UnscheduleThread(Thread* thread, u32 priority); |
| 50 | 50 | ||
| 51 | /// Moves a thread to the back of the current priority queue | ||
| 52 | void RescheduleThread(Thread* thread, u32 priority); | ||
| 53 | |||
| 51 | /// Sets the priority of a thread in the scheduler | 54 | /// Sets the priority of a thread in the scheduler |
| 52 | void SetThreadPriority(Thread* thread, u32 priority); | 55 | void SetThreadPriority(Thread* thread, u32 priority); |
| 53 | 56 | ||
| 57 | /// Gets the next suggested thread for load balancing | ||
| 58 | Thread* GetNextSuggestedThread(u32 core); | ||
| 59 | |||
| 54 | /// Returns a list of all threads managed by the scheduler | 60 | /// Returns a list of all threads managed by the scheduler |
| 55 | const std::vector<SharedPtr<Thread>>& GetThreadList() const { | 61 | const std::vector<SharedPtr<Thread>>& GetThreadList() const { |
| 56 | return thread_list; | 62 | return thread_list; |