aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/semaphore.h
diff options
context:
space:
mode:
authorGravatar Subv <subv2112@gmail.com>2014-12-12 20:46:52 -0500
committerGravatar Subv <subv2112@gmail.com>2014-12-13 13:40:16 -0500
commit5e259862352eaef61567ee33b7d68f2f268344b5 (patch)
tree3d512289130ceffa57db31db41d3781c5a753103 /src/core/hle/kernel/semaphore.h
parentcc81a510e3ab61786f83df1cb2e55a0b29b7eefb (diff)
Kernel/Semaphores: Addressed some issues.
Diffstat (limited to 'src/core/hle/kernel/semaphore.h')
-rw-r--r--src/core/hle/kernel/semaphore.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/hle/kernel/semaphore.h b/src/core/hle/kernel/semaphore.h
index b29812e1..f0075fdb 100644
--- a/src/core/hle/kernel/semaphore.h
+++ b/src/core/hle/kernel/semaphore.h
@@ -11,21 +11,22 @@
namespace Kernel {
/**
- * Creates a semaphore
+ * Creates a semaphore.
* @param handle Pointer to the handle of the newly created object
- * @param initial_count number of slots reserved for other threads
- * @param max_count maximum number of slots 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
*/
ResultCode CreateSemaphore(Handle* handle, u32 initial_count, u32 max_count, const std::string& name = "Unknown");
/**
- * Releases a certain number of slots from a semaphore
+ * Releases a certain number of slots from a semaphore.
* @param count The number of free slots the semaphore had before this call
* @param handle The handle of the semaphore to release
* @param release_count The number of slots to release
* @return ResultCode of the error
*/
ResultCode ReleaseSemaphore(s32* count, Handle handle, s32 release_count);
+
} // namespace