]> git.proxmox.com Git - wasi-libc.git/blame - libc-top-half/musl/arch/i386/bits/sem.h
Update to musl 1.2.0.
[wasi-libc.git] / libc-top-half / musl / arch / i386 / bits / sem.h
CommitLineData
79a9b408
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;
79a9b408
DG
7 unsigned short sem_nsems;
8 char __sem_nsems_pad[sizeof(long)-sizeof(short)];
9 long __unused3;
10 long __unused4;
575e1579
DG
11 time_t sem_otime;
12 time_t sem_ctime;
79a9b408 13};