Sign in
mojo
/
mojo-tools
/
96b05c1cc252cbd1582be4b8c554e72024938f3c
/
.
/
fusl
/
src
/
linux
/
remap_file_pages.c
blob: a9699ce2e4f7d71c18cf500bacbfda4c47e86ce2 [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<sys/mman.h>
#include
"syscall.h"
int
remap_file_pages
(
void
*
addr
,
size_t
size
,
int
prot
,
size_t
pgoff
,
int
flags
)
{
return
syscall
(
SYS_remap_file_pages
,
addr
,
size
,
prot
,
pgoff
,
flags
);
}