diff options
author | Subv <subv2112@gmail.com> | 2014-12-04 17:55:13 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2014-12-13 19:40:12 +0100 |
commit | abff4a7ee23a04baa9d264417c9c814309ef294b (patch) | |
tree | 399521b0c74e6cc33957feec459f6682be81a978 /src/core/hle/kernel/semaphore.h | |
parent | SVC: Implemented ReleaseSemaphore. (diff) | |
download | yuzu-abff4a7ee23a04baa9d264417c9c814309ef294b.tar yuzu-abff4a7ee23a04baa9d264417c9c814309ef294b.tar.gz yuzu-abff4a7ee23a04baa9d264417c9c814309ef294b.tar.bz2 yuzu-abff4a7ee23a04baa9d264417c9c814309ef294b.tar.lz yuzu-abff4a7ee23a04baa9d264417c9c814309ef294b.tar.xz yuzu-abff4a7ee23a04baa9d264417c9c814309ef294b.tar.zst yuzu-abff4a7ee23a04baa9d264417c9c814309ef294b.zip |
Diffstat (limited to 'src/core/hle/kernel/semaphore.h')
-rw-r--r-- | src/core/hle/kernel/semaphore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/semaphore.h b/src/core/hle/kernel/semaphore.h index 854831ecf..b29812e1d 100644 --- a/src/core/hle/kernel/semaphore.h +++ b/src/core/hle/kernel/semaphore.h @@ -13,8 +13,8 @@ namespace Kernel { /** * Creates a semaphore * @param handle Pointer to the handle of the newly created object - * @param initial_count number of reserved entries in the semaphore - * @param max_count maximum number of holders the semaphore can have + * @param initial_count number of slots reserved for other threads + * @param max_count maximum number of slots the semaphore can have * @param name Optional name of semaphore * @return ResultCode of the error */ |