aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/include/mips64-linux-muslabin32/bits/sem.h
blob: 87b05d488d13c7b568c5b8f59ac5b62b5742f8b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct semid_ds {
	struct ipc_perm sem_perm;
	unsigned long __sem_otime_lo;
	unsigned long __sem_ctime_lo;
#if __BYTE_ORDER == __LITTLE_ENDIAN
	unsigned short sem_nsems;
	char __sem_nsems_pad[sizeof(long)-sizeof(short)];
#else
	char __sem_nsems_pad[sizeof(long)-sizeof(short)];
	unsigned short sem_nsems;
#endif
	unsigned long __sem_otime_hi;
	unsigned long __sem_ctime_hi;
	time_t sem_otime;
	time_t sem_ctime;
};