vitasdk
Documentation of the vitasdk
lw_cond.h
Go to the documentation of this file.
1
6#ifndef _PSP2_KERNEL_THREADMGR_LW_COND_H_
7#define _PSP2_KERNEL_THREADMGR_LW_COND_H_
8
10#include <psp2/types.h>
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
18
19int sceKernelCreateLwCond(SceKernelLwCondWork *pWork, const char *pName, unsigned int attr, SceKernelLwMutexWork *pLwMutex, const SceKernelLwCondOptParam *pOptParam);
24int sceKernelWaitLwCond(SceKernelLwCondWork *pWork, unsigned int *pTimeout);
25
26
27#ifdef __cplusplus
28}
29#endif
30
31#endif /* _PSP2_KERNEL_THREADMGR_LW_COND_H_ */
int sceKernelWaitLwCond(SceKernelLwCondWork *pWork, unsigned int *pTimeout)
int sceKernelSignalLwCond(SceKernelLwCondWork *pWork)
int sceKernelSignalLwCondAll(SceKernelLwCondWork *pWork)
int sceKernelSignalLwCondTo(SceKernelLwCondWork *pWork, SceUID threadId)
int sceKernelDeleteLwCond(SceKernelLwCondWork *pWork)
int sceKernelCreateLwCond(SceKernelLwCondWork *pWork, const char *pName, unsigned int attr, SceKernelLwMutexWork *pLwMutex, const SceKernelLwCondOptParam *pOptParam)
Definition threadmgr.h:248
Definition threadmgr.h:243
Definition threadmgr.h:255
int SceUID
UIDs are used to describe many different kernel objects.
Definition types.h:90