mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
216 B
15 lines
216 B
|
10 years ago
|
struct ipc_perm {
|
||
|
|
key_t __ipc_perm_key;
|
||
|
|
uid_t uid;
|
||
|
|
gid_t gid;
|
||
|
|
uid_t cuid;
|
||
|
|
gid_t cgid;
|
||
|
|
mode_t mode;
|
||
|
|
int __ipc_perm_seq;
|
||
|
|
int __pad1;
|
||
|
|
unsigned long __unused1;
|
||
|
|
unsigned long __unused2;
|
||
|
|
};
|
||
|
|
|
||
|
|
#define IPC_64 0x100
|