mlock.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/mlock.c
blob: 71af582fe6a3eb1538a59a1dded009d16ab062b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <sys/mman.h>
#include "syscall.h"
int mlock(const void *addr, size_t len)
{
#ifdef SYS_mlock
	return syscall(SYS_mlock, addr, len);
#else
	return syscall(SYS_mlock2, addr, len, 0);
#endif
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月10日 05:56:15 +0000

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