1 #include <sys/mman.h> 2 #include "syscall.h" 3 #include <unsupported_api.h> 4 munlockall(void)5int munlockall(void) 6 { 7 UNSUPPORTED_API_VOID(LITEOS_A); 8 return syscall(SYS_munlockall); 9 } 10
1 #include <sys/mman.h> 2 #include "syscall.h" 3 #include <unsupported_api.h> 4 munlockall(void)5int munlockall(void) 6 { 7 UNSUPPORTED_API_VOID(LITEOS_A); 8 return syscall(SYS_munlockall); 9 } 10