mirror of
https://git.musl-libc.org/git/musl
synced 2025-02-15 17:54:23 +03:00
![Szabolcs Nagy](/assets/img/avatar_default.png)
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;
|
|
};
|