summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/semaphore.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2014-12-13 02:46:52 +0100
committerSubv <subv2112@gmail.com>2014-12-13 19:40:16 +0100
commit5e259862352eaef61567ee33b7d68f2f268344b5 (patch)
tree3d512289130ceffa57db31db41d3781c5a753103 /src/core/hle/kernel/semaphore.h
parentSemaphore: Removed an unneeded function (diff)
downloadyuzu-5e259862352eaef61567ee33b7d68f2f268344b5.tar
yuzu-5e259862352eaef61567ee33b7d68f2f268344b5.tar.gz
yuzu-5e259862352eaef61567ee33b7d68f2f268344b5.tar.bz2
yuzu-5e259862352eaef61567ee33b7d68f2f268344b5.tar.lz
yuzu-5e259862352eaef61567ee33b7d68f2f268344b5.tar.xz
yuzu-5e259862352eaef61567ee33b7d68f2f268344b5.tar.zst
yuzu-5e259862352eaef61567ee33b7d68f2f268344b5.zip
Diffstat (limited to '')
-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 b29812e1d..f0075fdb8 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