1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
5 #include <asm/ipcbuf.h>
8 * The semid64_ds structure for the MIPS architecture.
9 * Note extra padding because this structure is passed back and forth
10 * between kernel and user space.
12 * Pad space is left for 2 miscellaneous 64-bit values on mips64,
13 * but used for the upper 32 bit of the time values on mips32.
18 struct ipc64_perm sem_perm
; /* permissions .. see ipc.h */
19 long sem_otime
; /* last semop time */
20 long sem_ctime
; /* last change time */
21 unsigned long sem_nsems
; /* no. of semaphores in array */
22 unsigned long __unused1
;
23 unsigned long __unused2
;
27 struct ipc64_perm sem_perm
; /* permissions .. see ipc.h */
28 unsigned long sem_otime
; /* last semop time */
29 unsigned long sem_ctime
; /* last change time */
30 unsigned long sem_nsems
; /* no. of semaphores in array */
31 unsigned long sem_otime_high
;
32 unsigned long sem_ctime_high
;
36 #endif /* _ASM_SEMBUF_H */