• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <sys/mman.h>
2 #include "syscall.h"
3 #include <unsupported_api.h>
4 
mlockall(int flags)5 int mlockall(int flags)
6 {
7 	UNSUPPORTED_API_VOID(LITEOS_A);
8 	return syscall(SYS_mlockall, flags);
9 }
10