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