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. More... | |
int | ksceKernelDeleteCond (SceUID condId) |
Destroy a condition variable. More... | |
int | ksceKernelWaitCond (SceUID condId, unsigned int *timeout) |
Waits for a signal of a condition variable. More... | |
int | ksceKernelSignalCond (SceUID condId) |
Signals a condition variable. More... | |
int | ksceKernelSignalCondAll (SceUID condId) |
Signals a condition variable to all threads waiting for it. More... | |
int | ksceKernelSignalCondTo (SceUID condId, SceUID threadId) |
Signals a condition variable to a specific thread waiting for it. More... | |