summaryrefslogtreecommitdiff
path: root/include/user/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'include/user/kernel')
-rw-r--r--include/user/kernel/threadmgr.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/include/user/kernel/threadmgr.h b/include/user/kernel/threadmgr.h
index a73562f..c5d93b7 100644
--- a/include/user/kernel/threadmgr.h
+++ b/include/user/kernel/threadmgr.h
@@ -585,16 +585,8 @@ typedef struct SceKernelEventFlagOptParam SceKernelEventFlagOptParam;
/** Event flag creation attributes */
typedef enum SceEventFlagAttributes {
- /* Waiting threads queued on a FIFO basis */
- SCE_EVENT_THREAD_FIFO = 0,
- /* Waiting threads queued on priority basis */
- SCE_EVENT_THREAD_PRIO = 0x00002000,
- /* Event flag can only be waited upon by one thread */
- SCE_EVENT_WAITSINGLE = 0,
- /* Event flag can be waited upon by multiple threads */
- SCE_EVENT_WAITMULTIPLE = 0x00001000,
- /* Event flag can be accessed by sceKernelOpenEventFlag / sceKernelCloseEventFlag */
- SCE_EVENT_OPENABLE = 0x00000080
+ /** Allow the event flag to be waited upon by multiple threads */
+ SCE_EVENT_WAITMULTIPLE = 0x200
} SceEventFlagAttributes;
/** Event flag wait types */