Home
last modified time | relevance | path

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

/openbsd/lib/libc/gen/
H A Dshm_open.c38 makeshmpath(const char *origpath, char *shmpath, size_t len) in makeshmpath() argument
43 snprintf(shmpath, len, "/tmp/%s.shm", buf); in makeshmpath()
49 char shmpath[SHM_PATH_SIZE]; in shm_open() local
62 makeshmpath(path, shmpath, sizeof(shmpath)); in shm_open()
64 fd = HIDDEN(open)(shmpath, flags, mode); in shm_open()
84 char shmpath[SHM_PATH_SIZE]; in shm_unlink() local
86 makeshmpath(path, shmpath, sizeof(shmpath)); in shm_unlink()
87 return unlink(shmpath); in shm_unlink()