mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 01:17:47 +00:00
Semaphore: Implemented the initial_count parameter.
This commit is contained in:
parent
49b31badba
commit
abff4a7ee2
2 changed files with 7 additions and 5 deletions
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue