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
synccall: add separate exit_sem to fix thread release logic bug
[musl.git]
/
src
/
mman
/
msync.c
blob
fcd8cdf9fc17de3a366f1f512be06f0fdbd79672
1
#include <sys/mman.h>
2
#include
"syscall.h"
3
4
int
msync
(
void
*
start
,
size_t
len
,
int
flags
)
5
{
6
return
syscall_cp
(
SYS_msync
,
start
,
len
,
flags
);
7
}