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