1 #ifndef _UAPI_LINUX_SHM_H_
2 #define _UAPI_LINUX_SHM_H_
5 #include <linux/errno.h>
11 * SHMMNI, SHMMAX and SHMALL are default upper limits which can be
12 * modified by sysctl. The SHMMAX and SHMALL values have been chosen to
13 * be as large possible without facilitating scenarios where userspace
14 * causes overflows when adjusting the limits via operations of the form
15 * "retrieve current limit; add X; update limit". It is therefore not
16 * advised to make SHMMAX and SHMALL any larger. These limits are
17 * suitable for both 32 and 64-bit systems.
19 #define SHMMIN 1 /* min shared seg size (bytes) */
20 #define SHMMNI 4096 /* max num of segs system wide */
21 #define SHMMAX (ULONG_MAX - (1UL << 24)) /* max shared seg size (bytes) */
22 #define SHMALL (ULONG_MAX - (1UL << 24)) /* max shm system wide (pages) */
23 #define SHMSEG SHMMNI /* max shared segs per process */
25 /* Obsolete, used only for backwards compatibility and libc5 compiles */
27 struct ipc_perm shm_perm
; /* operation perms */
28 int shm_segsz
; /* size of segment (bytes) */
29 __kernel_time_t shm_atime
; /* last attach time */
30 __kernel_time_t shm_dtime
; /* last detach time */
31 __kernel_time_t shm_ctime
; /* last change time */
32 __kernel_ipc_pid_t shm_cpid
; /* pid of creator */
33 __kernel_ipc_pid_t shm_lpid
; /* pid of last operator */
34 unsigned short shm_nattch
; /* no. of current attaches */
35 unsigned short shm_unused
; /* compatibility */
36 void *shm_unused2
; /* ditto - used by DIPC */
37 void *shm_unused3
; /* unused */
40 /* Include the definition of shmid64_ds and shminfo64 */
41 #include <asm/shmbuf.h>
43 /* permission flag for shmget */
44 #define SHM_R 0400 /* or S_IRUGO from <linux/stat.h> */
45 #define SHM_W 0200 /* or S_IWUGO from <linux/stat.h> */
48 #define SHM_RDONLY 010000 /* read-only access */
49 #define SHM_RND 020000 /* round attach address to SHMLBA boundary */
50 #define SHM_REMAP 040000 /* take-over region on attach */
51 #define SHM_EXEC 0100000 /* execution access */
53 /* super user shmctl commands */
57 /* ipcs ctl commands */
61 /* Obsolete, used only for backwards compatibility */
72 __kernel_ulong_t shm_tot
; /* total allocated shm */
73 __kernel_ulong_t shm_rss
; /* total resident shm */
74 __kernel_ulong_t shm_swp
; /* total swapped shm */
75 __kernel_ulong_t swap_attempts
;
76 __kernel_ulong_t swap_successes
;
80 #endif /* _UAPI_LINUX_SHM_H_ */