conclusion
This commit is contained in:
parent
0f97a589b8
commit
9bc8a11afe
1069 changed files with 48694 additions and 11 deletions
25
05/musl-0.6.0/arch/x86_64/bits/ipc.h
Normal file
25
05/musl-0.6.0/arch/x86_64/bits/ipc.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
#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 _GNU_SOURCE
|
||||
# define IPC_INFO 3 /* See ipcs. */
|
||||
#endif
|
||||
|
||||
#define IPC_PRIVATE ((key_t) 0)
|
||||
|
||||
struct ipc_perm
|
||||
{
|
||||
key_t key;
|
||||
uid_t uid;
|
||||
gid_t gid;
|
||||
uid_t cuid;
|
||||
gid_t cgid;
|
||||
mode_t mode;
|
||||
int seq;
|
||||
long __pad1;
|
||||
long __pad2;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue