1/****************************************************************************
2 ****************************************************************************
3 ***
4 ***   This header was automatically generated from a Linux kernel header
5 ***   of the same name, to make information necessary for userspace to
6 ***   call into the kernel available to libc.  It contains only constants,
7 ***   structures, and macros generated from the original header, and thus,
8 ***   contains no copyrightable information.
9 ***
10 ****************************************************************************
11 ****************************************************************************/
12#ifndef __ASM_SH_SHMBUF_H
13#define __ASM_SH_SHMBUF_H
14
15struct shmid64_ds {
16 struct ipc64_perm shm_perm;
17 size_t shm_segsz;
18 __kernel_time_t shm_atime;
19 unsigned long __unused1;
20 __kernel_time_t shm_dtime;
21 unsigned long __unused2;
22 __kernel_time_t shm_ctime;
23 unsigned long __unused3;
24 __kernel_pid_t shm_cpid;
25 __kernel_pid_t shm_lpid;
26 unsigned long shm_nattch;
27 unsigned long __unused4;
28 unsigned long __unused5;
29};
30
31struct shminfo64 {
32 unsigned long shmmax;
33 unsigned long shmmin;
34 unsigned long shmmni;
35 unsigned long shmseg;
36 unsigned long shmall;
37 unsigned long __unused1;
38 unsigned long __unused2;
39 unsigned long __unused3;
40 unsigned long __unused4;
41};
42
43#endif
44