• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <sys/mman.h>
2 #include <unsupported_api.h>
3 #include "syscall.h"
4 
msync(void * start,size_t len,int flags)5 int msync(void *start, size_t len, int flags)
6 {
7 	unsupported_api(__FUNCTION__);
8 	return syscall_cp(SYS_msync, start, len, flags);
9 }
10