munmap.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/munmap.c
blob: 91aefd407f5071e348dc020aa98c3719bb6b8931 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <unistd.h>
#include <sys/mman.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);
int __munmap(void *start, size_t len)
{
	int ret;
	__vm_lock(-1);
	ret = syscall(SYS_munmap, start, len);
	__vm_unlock();
	return ret;
}
weak_alias(__munmap, munmap);
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月25日 22:32:30 +0000

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