mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-17 09:48:39 -05:00
core: hle: kernel: Update KConditionVariable.
This commit is contained in:
@ -50,6 +50,11 @@ public:
|
||||
}
|
||||
virtual HandleType GetHandleType() const = 0;
|
||||
|
||||
void Close() {
|
||||
// TODO(bunnei): This is a placeholder to decrement the reference count, which we will use
|
||||
// when we implement KAutoObject instead of using shared_ptr.
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if a thread can wait on the object
|
||||
* @return True if a thread can wait on the object, otherwise false
|
||||
|
Reference in New Issue
Block a user