diff options
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index bf0cae959..88255099f 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -408,13 +408,13 @@ public: | |||
| 408 | void Sleep(s64 nanoseconds); | 408 | void Sleep(s64 nanoseconds); |
| 409 | 409 | ||
| 410 | /// Yields this thread without rebalancing loads. | 410 | /// Yields this thread without rebalancing loads. |
| 411 | void YieldSimple(); | 411 | bool YieldSimple(); |
| 412 | 412 | ||
| 413 | /// Yields this thread and does a load rebalancing. | 413 | /// Yields this thread and does a load rebalancing. |
| 414 | void YieldAndBalanceLoad(); | 414 | bool YieldAndBalanceLoad(); |
| 415 | 415 | ||
| 416 | /// Yields this thread and if the core is left idle, loads are rebalanced | 416 | /// Yields this thread and if the core is left idle, loads are rebalanced |
| 417 | void YieldAndWaitForLoadBalancing(); | 417 | bool YieldAndWaitForLoadBalancing(); |
| 418 | 418 | ||
| 419 | ThreadSchedStatus GetSchedulingStatus() const { | 419 | ThreadSchedStatus GetSchedulingStatus() const { |
| 420 | return static_cast<ThreadSchedStatus>(scheduling_state & ThreadSchedMasks::LowMask); | 420 | return static_cast<ThreadSchedStatus>(scheduling_state & ThreadSchedMasks::LowMask); |