]> git.proxmox.com Git - wasi-libc.git/blame - libc-top-half/musl/arch/arm/bits/sem.h
Update to musl 1.2.0.
[wasi-libc.git] / libc-top-half / musl / arch / arm / bits / sem.h
CommitLineData
320054e8
DG
1struct semid_ds {
2 struct ipc_perm sem_perm;
575e1579
DG
3 unsigned long __sem_otime_lo;
4 unsigned long __sem_otime_hi;
5 unsigned long __sem_ctime_lo;
6 unsigned long __sem_ctime_hi;
320054e8
DG
7#if __BYTE_ORDER == __LITTLE_ENDIAN
8 unsigned short sem_nsems;
79a9b408 9 char __sem_nsems_pad[sizeof(long)-sizeof(short)];
320054e8 10#else
79a9b408 11 char __sem_nsems_pad[sizeof(long)-sizeof(short)];
320054e8
DG
12 unsigned short sem_nsems;
13#endif
79a9b408
DG
14 long __unused3;
15 long __unused4;
575e1579
DG
16 time_t sem_otime;
17 time_t sem_ctime;
320054e8 18};