1
0

munlock.c 131 B

1234567
  1. #include <sys/mman.h>
  2. #include "syscall.h"
  3. int munlock(const void *addr, size_t len)
  4. {
  5. return syscall(SYS_munlock, addr, len);
  6. }