diff options
Diffstat (limited to 'src/core/hle/kernel/thread.h')
| -rw-r--r-- | src/core/hle/kernel/thread.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h index f3dc4eec0..9faf89c15 100644 --- a/src/core/hle/kernel/thread.h +++ b/src/core/hle/kernel/thread.h | |||
| @@ -70,7 +70,8 @@ public: | |||
| 70 | inline bool IsSuspended() const { return (status & THREADSTATUS_SUSPEND) != 0; } | 70 | inline bool IsSuspended() const { return (status & THREADSTATUS_SUSPEND) != 0; } |
| 71 | inline bool IsIdle() const { return idle; } | 71 | inline bool IsIdle() const { return idle; } |
| 72 | 72 | ||
| 73 | ResultVal<bool> WaitSynchronization(unsigned index) override; | 73 | ResultVal<bool> Wait(unsigned index) override; |
| 74 | ResultVal<bool> Acquire() override; | ||
| 74 | 75 | ||
| 75 | s32 GetPriority() const { return current_priority; } | 76 | s32 GetPriority() const { return current_priority; } |
| 76 | void SetPriority(s32 priority); | 77 | void SetPriority(s32 priority); |