mmap.c\mman\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/mman/mmap.c
blob: e99271f7e5dd7092cf5b84201906527425151ed9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include <unistd.h>
#include <sys/mman.h>
#include <errno.h>
#include <limits.h>
#include "syscall.h"
#include "libc.h"
static void dummy1(int x) { }
static void dummy0(void) { }
weak_alias(dummy1, __vm_lock);
weak_alias(dummy0, __vm_unlock);
#define OFF_MASK ((-0x2000ULL << (8*sizeof(long)-1)) | 0xfff)
void *__mmap(void *start, size_t len, int prot, int flags, int fd, off_t off)
{
	void *ret;
	if (off & OFF_MASK) {
		errno = EINVAL;
		return MAP_FAILED;
	}
	if (flags & MAP_FIXED) __vm_lock(-1);
#ifdef SYS_mmap2
	ret = (void *)syscall(SYS_mmap2, start, len, prot, flags, fd, off>>12);
#else
	ret = (void *)syscall(SYS_mmap, start, len, prot, flags, fd, off);
#endif
	if (flags & MAP_FIXED) __vm_unlock();
	return ret;
}
weak_alias(__mmap, mmap);
LFS64(mmap);
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月07日 18:53:03 +0000

AltStyle によって変換されたページ (->オリジナル) /