mirror of
git://git.musl-libc.org/musl
synced 2024-12-24 15:43:06 +00:00
8c0a3d9e5c
based on initial work by rdp, with heavy modifications. some features including threads are untested because qemu app-level emulation seems to be broken and I do not have a proper system image for testing.
15 lines
179 B
C
15 lines
179 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;
|
|
};
|
|
|
|
#define IPC_64 0x100
|