123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef _SYS_IPC_H
- # error "Never use <bits/ipc.h> directly; include <sys/ipc.h> instead."
- #endif
- #include <bits/types.h>
- #define IPC_CREAT 01000
- #define IPC_EXCL 02000
- #define IPC_NOWAIT 04000
- #define IPC_RMID 0
- #define IPC_SET 1
- #define IPC_STAT 2
- #ifdef __USE_GNU
- # define IPC_INFO 3
- #endif
- #define IPC_PRIVATE ((__key_t) 0)
- struct ipc_perm
- {
- __key_t __key;
- unsigned int uid;
- unsigned int gid;
- unsigned int cuid;
- unsigned int cgid;
- unsigned int mode;
- unsigned short int __seq;
- unsigned short int __pad1;
- unsigned long int __uclibc_unused1;
- unsigned long int __uclibc_unused2;
- };
|