use 64-bit semid_ds layout in the generic version of bits/sem.h
[musl] / arch / riscv64 / bits / sem.h
1 struct semid_ds {
2         struct ipc_perm sem_perm;
3         time_t sem_otime;
4         time_t sem_ctime;
5         unsigned short sem_nsems;
6         char __sem_nsems_pad[sizeof(long)-sizeof(short)];
7         long __unused3;
8         long __unused4;
9 };