mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-10 20:48:03 -05:00
Kernel: Removed HandleTable::GetWaitObject
This isn't necessary anymore since plain Get works correctly for WaitObjects.
This commit is contained in:
@ -252,15 +252,6 @@ public:
|
||||
return DynamicObjectCast<T>(GetGeneric(handle));
|
||||
}
|
||||
|
||||
/**
|
||||
* Looks up a handle while verifying that it is an object that a thread can wait on
|
||||
* @return Pointer to the looked-up object, or `nullptr` if the handle is not valid or it is
|
||||
* not a waitable object.
|
||||
*/
|
||||
SharedPtr<WaitObject> GetWaitObject(Handle handle) const {
|
||||
return DynamicObjectCast<WaitObject>(GetGeneric(handle));
|
||||
}
|
||||
|
||||
/// Closes all handles held in this table.
|
||||
void Clear();
|
||||
|
||||
|
Reference in New Issue
Block a user