Semaphore: Implemented the initial_count parameter.

This commit is contained in:
Subv
2014-12-04 11:55:13 -05:00
parent 49b31badba
commit abff4a7ee2
2 changed files with 7 additions and 5 deletions

View File

@ -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
*/