1 #include <sys/mman.h> 2 #include "syscall.h" 3 mlockall(int flags)4 int mlockall(int flags) 5 { 6 return syscall(SYS_mlockall, flags); 7 } 8