diff options
Diffstat (limited to 'src/core/hle/kernel')
| -rw-r--r-- | src/core/hle/kernel/kernel.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index d8929259e..4344264dc 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -252,15 +252,6 @@ public: | |||
| 252 | return DynamicObjectCast<T>(GetGeneric(handle)); | 252 | return DynamicObjectCast<T>(GetGeneric(handle)); |
| 253 | } | 253 | } |
| 254 | 254 | ||
| 255 | /** | ||
| 256 | * Looks up a handle while verifying that it is an object that a thread can wait on | ||
| 257 | * @return Pointer to the looked-up object, or `nullptr` if the handle is not valid or it is | ||
| 258 | * not a waitable object. | ||
| 259 | */ | ||
| 260 | SharedPtr<WaitObject> GetWaitObject(Handle handle) const { | ||
| 261 | return DynamicObjectCast<WaitObject>(GetGeneric(handle)); | ||
| 262 | } | ||
| 263 | |||
| 264 | /// Closes all handles held in this table. | 255 | /// Closes all handles held in this table. |
| 265 | void Clear(); | 256 | void Clear(); |
| 266 | 257 | ||