diff --git a/include/psp2/kernel/threadmgr.h b/include/psp2/kernel/threadmgr.h index 3dcb9ebde..9e385577b 100644 --- a/include/psp2/kernel/threadmgr.h +++ b/include/psp2/kernel/threadmgr.h @@ -1183,6 +1183,8 @@ typedef struct SceKernelLwCondOptParam { int sceKernelCreateLwCond(SceKernelLwCondWork *pWork, const char *pName, unsigned int attr, SceKernelLwMutexWork *pLwMutex, const SceKernelLwCondOptParam *pOptParam); int sceKernelDeleteLwCond(SceKernelLwCondWork *pWork); int sceKernelSignalLwCond(SceKernelLwCondWork *pWork); +int sceKernelSignalLwCondAll(SceKernelLwCondWork *pWork); +int sceKernelSignalLwCondTo(SceKernelLwCondWork *pWork, SceUID threadId); int sceKernelWaitLwCond(SceKernelLwCondWork *pWork, unsigned int *pTimeout); /**