diff options
author | Francisco José García García | 2017-12-01 14:53:59 +0100 |
---|---|---|
committer | GitHub | 2017-12-01 14:53:59 +0100 |
commit | f2edbe5b3239d2fde76f71fbe61c0bd38dbcbda0 (patch) | |
tree | 9f415fe447c8c467866b9222c437f97bdf31bc99 /include/user | |
parent | Add ksceKernelCpuGetCpuId NID (diff) | |
download | vds-libraries-f2edbe5b3239d2fde76f71fbe61c0bd38dbcbda0.tar.gz |
Add missing sceKernelTryLockLwMutex
Diffstat (limited to 'include/user')
-rw-r--r-- | include/user/kernel/threadmgr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/user/kernel/threadmgr.h b/include/user/kernel/threadmgr.h index 509e473..aa43e0c 100644 --- a/include/user/kernel/threadmgr.h +++ b/include/user/kernel/threadmgr.h @@ -1109,6 +1109,7 @@ typedef struct SceKernelLwMutexOptParam { int sceKernelCreateLwMutex(SceKernelLwMutexWork *pWork,const char *pName, unsigned int attr, int initCount, const SceKernelLwMutexOptParam *pOptParam); int sceKernelDeleteLwMutex(SceKernelLwMutexWork *pWork); int sceKernelLockLwMutex(SceKernelLwMutexWork *pWork, int lockCount, unsigned int *pTimeout); +int sceKernelTryLockLwMutex(SceKernelLwMutexWork *pWork, int lockCount); int sceKernelUnlockLwMutex(SceKernelLwMutexWork *pWork, int unlockCount); typedef struct SceKernelLwCondWork { |