mirror of
git://git.musl-libc.org/musl
synced 2024-12-26 00:22:35 +00:00
3ceb89ed3f
This used to be broken when all archs had the same semid_ds definition: there is no padding around the time_t members on mips.
15 lines
333 B
C
15 lines
333 B
C
struct semid_ds {
|
|
struct ipc_perm sem_perm;
|
|
time_t sem_otime;
|
|
time_t sem_ctime;
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
unsigned short sem_nsems;
|
|
char __sem_nsems_pad[sizeof(time_t)-sizeof(short)];
|
|
#else
|
|
char __sem_nsems_pad[sizeof(time_t)-sizeof(short)];
|
|
unsigned short sem_nsems;
|
|
#endif
|
|
time_t __unused3;
|
|
time_t __unused4;
|
|
};
|