mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-20 07:07:53 -05:00
Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.
This commit is contained in:
@ -58,8 +58,8 @@ public:
|
||||
inline bool IsSuspended() const { return (status & THREADSTATUS_SUSPEND) != 0; }
|
||||
inline bool IsIdle() const { return idle; }
|
||||
|
||||
ResultVal<bool> ShouldWait() override;
|
||||
ResultVal<bool> Acquire() override;
|
||||
bool ShouldWait() override;
|
||||
void Acquire() override;
|
||||
|
||||
s32 GetPriority() const { return current_priority; }
|
||||
void SetPriority(s32 priority);
|
||||
|
Reference in New Issue
Block a user