summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/user/avcdec.h3
-rw-r--r--include/user/kernel/threadmgr.h27
2 files changed, 0 insertions, 30 deletions
diff --git a/include/user/avcdec.h b/include/user/avcdec.h
index 6028b7b..bcfb842 100644
--- a/include/user/avcdec.h
+++ b/include/user/avcdec.h
@@ -12,9 +12,6 @@
extern "C" {
#endif /* defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus) */
-#define SCE_AVCDEC_PIXEL_RGB565 (0x1U)
-#define SCE_AVCDEC_PIXEL_RGBA5551 (0x2U)
-
/* For use in sceAvcdecSetDecodeMode() */
#define SCE_AVCDEC_MODE_EXTENDED (0x80U)
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 {