the big time handling overhaul
[musl] / src / time / __map_file.c
1 #include <sys/mman.h>
2 #include <fcntl.h>
3 #include <sys/stat.h>
4 #include "syscall.h"
5
6 void *__mmap(void *, size_t, int, int, int, off_t);
7
8 const char unsigned *__map_file(const char *pathname, size_t *size)
9 {
10         struct stat st;
11         const unsigned char *map = MAP_FAILED;
12         int flags = O_RDONLY|O_LARGEFILE|O_CLOEXEC|O_NOFOLLOW|O_NONBLOCK;
13         int fd = __syscall(SYS_open, pathname, flags);
14         if (fd < 0) return 0;
15         if (!__syscall(SYS_fstat, fd, &st))
16                 map = __mmap(0, st.st_size, PROT_READ, MAP_SHARED, fd, 0);
17         __syscall(SYS_close);
18         *size = st.st_size;
19         return map == MAP_FAILED ? 0 : map;
20 }