mirror of
git://git.musl-libc.org/musl
synced 2025-02-04 21:11:38 +00: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.
11 lines
197 B
C
11 lines
197 B
C
struct semid_ds {
|
|
struct ipc_perm sem_perm;
|
|
int __unused1;
|
|
time_t sem_otime;
|
|
int __unused2;
|
|
time_t sem_ctime;
|
|
unsigned short __sem_nsems_pad, sem_nsems;
|
|
long __unused3;
|
|
long __unused4;
|
|
};
|