From 0e0256a84dfd4836ad9c943699165d13218cb8a9 Mon Sep 17 00:00:00 2001 From: Daria Sukhonina Date: Sat, 23 Jul 2022 23:31:54 +0300 Subject: [PATCH] Add `sceKernelSignalLwCond*` functions Similar to `sceKernelSignalCondAll` and `sceKernelSignalCondTo` --- include/psp2/kernel/threadmgr.h | 2 ++ 1 file changed, 2 insertions(+) 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); /**