| 1953 | "POSIX SHM list"); |
| 1954 | |
| 1955 | int |
| 1956 | kern_shm_open(struct thread *td, const char *path, int flags, mode_t mode, |
| 1957 | struct filecaps *caps) |
| 1958 | { |
| 1959 | |
| 1960 | return (kern_shm_open2(td, path, flags, mode, 0, caps, NULL)); |
| 1961 | } |
| 1962 | |
| 1963 | /* |
| 1964 | * This version of the shm_open() interface leaves CLOEXEC behavior up to the |
no test coverage detected