![]() |
vitasdk
Documentation of the vitasdk
|
#include <vitasdk/build_utils.h>#include <psp2kern/types.h>#include <psp2common/kernel/threadmgr.h>Go to the source code of this file.
Functions | |
| SceUID | ksceKernelCreateCond (const char *name, SceUInt attr, SceUID mutexId, const SceKernelCondOptParam *option) |
| Creates a new condition variable. | |
| int | ksceKernelDeleteCond (SceUID condId) |
| Destroy a condition variable. | |
| int | ksceKernelWaitCond (SceUID condId, unsigned int *timeout) |
| Waits for a signal of a condition variable. | |
| int | ksceKernelSignalCond (SceUID condId) |
| Signals a condition variable. | |
| int | ksceKernelSignalCondAll (SceUID condId) |
| Signals a condition variable to all threads waiting for it. | |
| int | ksceKernelSignalCondTo (SceUID condId, SceUID threadId) |
| Signals a condition variable to a specific thread waiting for it. | |