• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <sys/mman.h>
2 #include <unsupported_api.h>
3 #include "syscall.h"
4 
munlockall(void)5 int munlockall(void)
6 {
7 	unsupported_api(__FUNCTION__);
8 	return syscall(SYS_munlockall);
9 }
10