Skip to content

Commit

Permalink
Add sceKernelSignalLwCond* functions
Browse files Browse the repository at this point in the history
Similar to `sceKernelSignalCondAll` and `sceKernelSignalCondTo`
  • Loading branch information
zetanumbers authored and d3m3vilurr committed Jul 24, 2022
1 parent d0b3b52 commit 0e0256a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/psp2/kernel/threadmgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);

/**
Expand Down

0 comments on commit 0e0256a

Please sign in to comment.