core: hle: kernel: Update KConditionVariable.
This commit is contained in:
parent
1212fa60b6
commit
b4e6d6c385
4 changed files with 413 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue