Home
last modified time | relevance | path

Searched refs:shm_open (Results 1 – 6 of 6) sorted by relevance

/xnu-8796.121.2/tests/
H A Dtestposixshm.c30 myfd = shm_open("abcd", O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR); in worker_thread_func()
115 fd1 = shm_open(maxname, O_RDWR, S_IRUSR | S_IWUSR);
121 fd1 = shm_open(toolong, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
127 fd1 = shm_open(noname, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
133 fd1 = shm_open(maxname, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
137 fd2 = shm_open(maxname, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
144 fd2 = shm_open(maxname, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
169 fd2 = shm_open(maxname, O_RDWR, S_IRUSR | S_IWUSR);
H A Dpwrite.c112 int shm_fd = shm_open(memory_path, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
H A Dpread.c144 int shm_fd = shm_open(memory_path, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
/xnu-8796.121.2/bsd/sys/
H A Dmman.h273 int shm_open(const char *, int, ...);
/xnu-8796.121.2/bsd/man/man2/
H A DMakefile214 shm_open.2 \
/xnu-8796.121.2/bsd/kern/
H A Dposix_shm.c336 shm_open(proc_t p, struct shm_open_args *uap, int32_t *retval) in shm_open() function