allow futex syscall

This commit is contained in:
mrbesen 2021-08-11 19:51:08 +02:00
parent d5ee38a553
commit efa75103c4
Signed by: MrBesen
GPG Key ID: 596B2350DCD67504
1 changed files with 1 additions and 0 deletions

View File

@ -78,6 +78,7 @@ static bool enableSecurity() {
seccomp_rule_add(scmp, SCMP_ACT_ALLOW, SCMP_SYS(preadv2), 0);
seccomp_rule_add(scmp, SCMP_ACT_ALLOW, SCMP_SYS(restart_syscall), 0);
seccomp_rule_add(scmp, SCMP_ACT_ALLOW, SCMP_SYS(futex), 0);
//apply seccomp
int err = seccomp_load(scmp);