repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
loongarch64: add TLSDESC support
[musl.git]
/
src
/
mman
/
munlock.c
blob
2cccef0c5077f1ec7085ff9bbd2158b4fe297033
1
#include <sys/mman.h>
2
#include
"syscall.h"
3
4
int
munlock
(
const void
*
addr
,
size_t
len
)
5
{
6
return
syscall
(
SYS_munlock
,
addr
,
len
);
7
}