mirror of
git://git.musl-libc.org/musl
synced 2024-12-21 06:12:38 +00:00
dfc1a37c44
POSIX requires the sem_nsems member to have type unsigned short. we have to work around the incorrect kernel type using matching endian-specific padding.
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;
|
|
};
|