core: hle: kernel: Update KConditionVariable.

This commit is contained in:
bunnei 2020-12-28 23:45:28 -08:00
parent 1212fa60b6
commit b4e6d6c385
4 changed files with 413 additions and 0 deletions

View file

@ -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