diff options
author | David Howells <dhowells@redhat.com> | 2012-10-09 09:46:45 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2012-10-09 09:46:45 +0100 |
commit | e717abac8a9f65eee6de3bb37e10c6916bced483 (patch) | |
tree | 574926087195e53958eec38886d60942e420c7b8 /arch/cris/include/uapi/asm/sembuf.h | |
parent | 98d848ea4c017101f7e4a85917d0e0991f388cd8 (diff) | |
download | op-kernel-dev-e717abac8a9f65eee6de3bb37e10c6916bced483.zip op-kernel-dev-e717abac8a9f65eee6de3bb37e10c6916bced483.tar.gz |
UAPI: (Scripted) Disintegrate arch/cris/include/asm
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Michael Kerrisk <mtk.manpages@gmail.com>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Acked-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'arch/cris/include/uapi/asm/sembuf.h')
-rw-r--r-- | arch/cris/include/uapi/asm/sembuf.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/cris/include/uapi/asm/sembuf.h b/arch/cris/include/uapi/asm/sembuf.h new file mode 100644 index 0000000..7fed984 --- /dev/null +++ b/arch/cris/include/uapi/asm/sembuf.h @@ -0,0 +1,25 @@ +#ifndef _CRIS_SEMBUF_H +#define _CRIS_SEMBUF_H + +/* + * The semid64_ds structure for CRIS architecture. + * Note extra padding because this structure is passed back and forth + * between kernel and user space. + * + * Pad space is left for: + * - 64-bit time_t to solve y2038 problem + * - 2 miscellaneous 32-bit values + */ + +struct semid64_ds { + struct ipc64_perm sem_perm; /* permissions .. see ipc.h */ + __kernel_time_t sem_otime; /* last semop time */ + unsigned long __unused1; + __kernel_time_t sem_ctime; /* last change time */ + unsigned long __unused2; + unsigned long sem_nsems; /* no. of semaphores in array */ + unsigned long __unused3; + unsigned long __unused4; +}; + +#endif /* _CRIS_SEMBUF_H */ |