1
0
انشعاب 0
قرینه از git://git.musl-libc.org/musl synced 2025-01-18 23:45:02 +00:00
musl/arch/x86_64/bits/sem.h
Rich Felker 28637bc407 collapse out byte order conditions in bits/sem.h for fixed-endian archs
having preprocessor conditionals on byte order in the bits headers for
fixed-endian archs is confusing at best. remove them.
2019-07-29 18:09:55 -04:00

11 خطوط
232 B
C

struct semid_ds {
struct ipc_perm sem_perm;
time_t sem_otime;
long __unused1;
time_t sem_ctime;
long __unused2;
unsigned short sem_nsems;
char __sem_nsems_pad[sizeof(long)-sizeof(short)];
long __unused3;
long __unused4;
};