diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-03-03 00:30:31 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-03-03 00:30:31 -0500 |
commit | ebd7af6940bebb3b083a4d9239da27a66d1c32ec (patch) | |
tree | 94545088c4e45e9765bd810743d4e8120f219426 /src/mman/shm_open.c | |
parent | 71df8b2760348c55b1c0d04aeebcae372d9760d3 (diff) | |
download | musl-ebd7af6940bebb3b083a4d9239da27a66d1c32ec.tar.gz musl-ebd7af6940bebb3b083a4d9239da27a66d1c32ec.tar.xz musl-ebd7af6940bebb3b083a4d9239da27a66d1c32ec.zip |
implement POSIX shared memory
Diffstat (limited to 'src/mman/shm_open.c')
-rw-r--r-- | src/mman/shm_open.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/mman/shm_open.c b/src/mman/shm_open.c new file mode 100644 index 00000000..d368622d --- /dev/null +++ b/src/mman/shm_open.c @@ -0,0 +1,21 @@ +#include <sys/mman.h> +#include <errno.h> +#include <fcntl.h> +#include <unistd.h> +#include <string.h> + +int shm_open(const char *name, int flag, mode_t mode) +{ + int fd, dir; + + while (*name == '/') name++; + if (strchr(name, '/')) { + errno = EINVAL; + return -1; + } + + if ((dir = open("/dev/shm", O_DIRECTORY|O_RDONLY)) < 0) return -1; + fd = openat(dir, name, flag|O_NOFOLLOW|O_CLOEXEC|O_NONBLOCK, mode); + close(dir); + return fd; +} |