diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/mutex.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/mutex.h b/src/core/hle/kernel/mutex.h index 871e2e562..8a9309069 100644 --- a/src/core/hle/kernel/mutex.h +++ b/src/core/hle/kernel/mutex.h | |||
| @@ -13,6 +13,7 @@ namespace Kernel { | |||
| 13 | /** | 13 | /** |
| 14 | * Releases a mutex | 14 | * Releases a mutex |
| 15 | * @param handle Handle to mutex to release | 15 | * @param handle Handle to mutex to release |
| 16 | * @return Result of operation, 0 on success, otherwise error code | ||
| 16 | */ | 17 | */ |
| 17 | Result ReleaseMutex(Handle handle); | 18 | Result ReleaseMutex(Handle handle); |
| 18 | 19 | ||
| @@ -20,6 +21,7 @@ Result ReleaseMutex(Handle handle); | |||
| 20 | * Creates a mutex | 21 | * Creates a mutex |
| 21 | * @param handle Reference to handle for the newly created mutex | 22 | * @param handle Reference to handle for the newly created mutex |
| 22 | * @param initial_locked Specifies if the mutex should be locked initially | 23 | * @param initial_locked Specifies if the mutex should be locked initially |
| 24 | * @return Handle to newly created object | ||
| 23 | */ | 25 | */ |
| 24 | Handle CreateMutex(bool initial_locked); | 26 | Handle CreateMutex(bool initial_locked); |
| 25 | 27 | ||