tag | line | file | source code |
shmflg | 488 | arch/alpha/kernel/osf_sys.c | asmlinkage long osf_shmat(int shmid, void *shmaddr, int shmflg) |
shmflg | 493 | arch/alpha/kernel/osf_sys.c | err = sys_shmat(shmid, shmaddr, shmflg, &raddr); |
shmflg | 63 | include/linux/shm.h | asmlinkage int sys_shmat (int shmid, char *shmaddr, int shmflg, ulong *addr); |
shmflg | 19 | ipc/shm.c | extern int ipcperms (struct ipc_perm *ipcp, short shmflg); |
shmflg | 22 | ipc/shm.c | static int newseg (key_t key, int shmflg, int size); |
shmflg | 73 | ipc/shm.c | static int newseg (key_t key, int shmflg, int size) |
shmflg | 111 | ipc/shm.c | shp->shm_perm.mode = (shmflg & S_IRWXUGO); |
shmflg | 132 | ipc/shm.c | asmlinkage int sys_shmget (key_t key, int size, int shmflg) |
shmflg | 140 | ipc/shm.c | return newseg(key, shmflg, size); |
shmflg | 142 | ipc/shm.c | if (!(shmflg & IPC_CREAT)) |
shmflg | 144 | ipc/shm.c | return newseg(key, shmflg, size); |
shmflg | 146 | ipc/shm.c | if ((shmflg & IPC_CREAT) && (shmflg & IPC_EXCL)) |
shmflg | 153 | ipc/shm.c | if (ipcperms (&shp->shm_perm, shmflg)) |
shmflg | 455 | ipc/shm.c | asmlinkage int sys_shmat (int shmid, char *shmaddr, int shmflg, ulong *raddr) |
shmflg | 475 | ipc/shm.c | if (shmflg & SHM_REMAP) |
shmflg | 480 | ipc/shm.c | if (shmflg & SHM_RND) |
shmflg | 495 | ipc/shm.c | if (!(shmflg & SHM_REMAP)) |
shmflg | 502 | ipc/shm.c | if (ipcperms(&shp->shm_perm, shmflg & SHM_RDONLY ? S_IRUGO : S_IRUGO|S_IWUGO)) |
shmflg | 519 | ipc/shm.c | shmd->vm_page_prot = (shmflg & SHM_RDONLY) ? PAGE_READONLY : PAGE_SHARED; |
shmflg | 522 | ipc/shm.c | | ((shmflg & SHM_RDONLY) ? 0 : VM_MAYWRITE | VM_WRITE); |
shmflg | 106 | ipc/util.c | asmlinkage int sys_shmat (int shmid, char *shmaddr, int shmflg, ulong *addr) |