Kernel: Removed HandleTable::GetWaitObject

This isn't necessary anymore since plain Get works correctly for
WaitObjects.
This commit is contained in:
Yuri Kunde Schlesner 2017-05-29 15:10:06 -07:00
parent b17754f998
commit 9453223075
2 changed files with 2 additions and 11 deletions

View file

@ -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();