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學(xué)習(xí)簡介: seccomp是Linux的一種安全機(jī)制拓售,android 8.1以上使用了seccomp 主要功能是限制直接通過syscall去調(diào)用某些系統(tǒng)函數(shù) seccomp的過濾...