nn::os::Semaphore::Semaphore Constructor#include <nn/os.h>
Semaphore(
s32 initialCount,
s32 maxCount
);
Semaphore();
| Semaphore ( s32, s32 ) | Constructs and initializes a semaphore. |
| Semaphore ( ) | Constructs a semaphore. Does not perform initialization. You must call Initialize to use the semaphore. |
Two constructors are provided: one performs initialization, and the other does not. You must call Initialize separately when you use the non-initializing constructor.
Constructs a semaphore. Does not perform initialization. You must call Initialize to use the semaphore.
CONFIDENTIAL