WUT
0.1
Wii U Toolchain
|
#include <semaphore.h>
Data Fields | |
uint32_t | tag |
Should always be set to the value OS_SEMAPHORE_TAG. More... | |
const char * | name |
Name set by OSInitMutexEx. More... | |
int32_t | count |
Current count of semaphore. More... | |
OSThreadQueue | queue |
Queue of threads waiting on semaphore object with OSWaitSemaphore. More... | |
Definition at line 21 of file semaphore.h.
uint32_t tag |
Should always be set to the value OS_SEMAPHORE_TAG.
Definition at line 24 of file semaphore.h.
const char* name |
Name set by OSInitMutexEx.
Definition at line 27 of file semaphore.h.
int32_t count |
Current count of semaphore.
Definition at line 32 of file semaphore.h.
OSThreadQueue queue |
Queue of threads waiting on semaphore object with OSWaitSemaphore.
Definition at line 35 of file semaphore.h.