diff options
author | Reiko Asakura | 2021-03-11 12:48:23 -0500 |
---|---|---|
committer | Reiko Asakura | 2021-03-11 12:48:23 -0500 |
commit | 562b91246b50fab6008b0740fab98f666b2d8b28 (patch) | |
tree | 639b82d8e6693b3f6cedaba7e8e5f7a1b7383154 /include/user/kernel | |
parent | Remove forwarded syscalls (diff) | |
download | vds-libraries-562b91246b50fab6008b0740fab98f666b2d8b28.tar.gz |
Remove old SDK functions
For condition variable functions see:
https://psvita.scedev.net/technotes/view/355
https://psvita.scedev.net/technotes/view/356
Diffstat (limited to 'include/user/kernel')
-rw-r--r-- | include/user/kernel/threadmgr.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/include/user/kernel/threadmgr.h b/include/user/kernel/threadmgr.h index 871f613..5691fe0 100644 --- a/include/user/kernel/threadmgr.h +++ b/include/user/kernel/threadmgr.h @@ -30,33 +30,6 @@ typedef enum SceThreadStatus { */ SceSize sceKernelGetThreadStackFreeSize(SceUID threadId); -/* Condition variables */ - -/** - * Open a condition variable - * - * @param pName - The name of the condition variable to open - * @return Returns an UID if successful, otherwise < 0 - */ -SceUID sceKernelOpenCond(const char *pName); - -/** - * Close a condition variable - * - * @param condition variableid - The condition variable id returned from ::sceKernelCreateCond - * @return Returns the value 0 if it's successful, otherwise < 0 - */ -SceInt32 sceKernelCloseCond(SceUID condId); - -/** - * Waits for a signal of a condition variable (with callbacks) - * - * @param condId - The condition variable id returned from ::sceKernelCreateCond - * @param pTimeout - Timeout in microseconds - * @return < 0 On error. - */ -SceInt32 sceKernelWaitCondCB(SceUID condId, SceUInt32 *pTimeout); - /* Misc. */ typedef struct SceKernelWaitSignalOptParam { |