]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - arch/mips/include/uapi/asm/sembuf.h
Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/ac97-mfd', 'asoc/topic...
[mirror_ubuntu-focal-kernel.git] / arch / mips / include / uapi / asm / sembuf.h
CommitLineData
6f52b16c 1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
1da177e4
LT
2#ifndef _ASM_SEMBUF_H
3#define _ASM_SEMBUF_H
4
5/*
6 * The semid64_ds structure for the MIPS architecture.
7 * Note extra padding because this structure is passed back and forth
8 * between kernel and user space.
9 *
10 * Pad space is left for:
11 * - 2 miscellaneous 64-bit values
12 */
13
14struct semid64_ds {
15 struct ipc64_perm sem_perm; /* permissions .. see ipc.h */
70342287
RB
16 __kernel_time_t sem_otime; /* last semop time */
17 __kernel_time_t sem_ctime; /* last change time */
1da177e4
LT
18 unsigned long sem_nsems; /* no. of semaphores in array */
19 unsigned long __unused1;
20 unsigned long __unused2;
21};
22
23#endif /* _ASM_SEMBUF_H */