mirror of
git://git.musl-libc.org/musl
synced 2024-12-16 19:55:38 +00:00
07e865cc5a
some of these definitions were just plain wrong, others based on outdated ancient "non-64" versions of the kernel interface. as much as possible has now been moved out of bits/* these changes break abi (the old abi for these functions was wrong), but since they were not working anyway it can hardly matter.
13 lines
157 B
C
13 lines
157 B
C
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;
|
|
long __pad1;
|
|
long __pad2;
|
|
};
|