int ret = prctl(PR_SET_SECCOMP, SECCOMP_MODE_STRICT);
LOG_D("Calling prctl() to set seccomp strict mode, return = %d, errno = %s", ret,
strerror(errno));
Calling prctl() to set seccomp strict mode, return = -1, errno = Invalid argument
我咋跑这段代码报错?😓
seccomp学习简介: seccomp是Linux的一种安全机制,android 8.1以上使用了seccomp 主要功能是限制直接通过syscall去调用某些系统函数 seccomp的过滤...