mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-27 08:29:27 +03:00
ad66ae93d0
these have been wrong for a long time and were never detected or corrected. powerpc needs some gratuitous extra padding/reserved slots in ipc_perm, big-endian ordering for the padding of time_t slots that was intended by the kernel folks to allow a transition to 64-bit time_t, and some minor gratuitous reordering of struct members.
17 lines
203 B
C
17 lines
203 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;
|
|
int __pad1;
|
|
long long __pad2;
|
|
long long __pad3;
|
|
};
|
|
|
|
#define IPC_64 0x100
|
|
|