summaryrefslogtreecommitdiff
path: root/arch/m68k/bits/sem.h
blob: d88338e69540e5e00f0761f77e498933e862dd39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
struct semid_ds {
	struct ipc_perm sem_perm;
	unsigned long __sem_otime_lo;
	unsigned long __sem_otime_hi;
	unsigned long __sem_ctime_lo;
	unsigned long __sem_ctime_hi;
	char __sem_nsems_pad[sizeof(long)-sizeof(short)];
	unsigned short sem_nsems;
	long __unused3;
	long __unused4;
	time_t sem_otime;
	time_t sem_ctime;
};