base-linux: permit rt_sigreturn on 64-bit ARM

This commit is contained in:
Norman Feske 2022-01-09 17:06:55 +01:00 committed by Christian Helmuth
parent ab9b75236d
commit 813731a1e0
2 changed files with 3 additions and 0 deletions

View File

@ -205,6 +205,9 @@ class Filter
_add_allow_rule(SCMP_SYS(mmap));
_add_allow_rule(SCMP_SYS(cacheflush));
_add_allow_rule(SCMP_SYS(sigreturn));
/* returning from signal handlers is safe */
_add_allow_rule(SCMP_SYS(rt_sigreturn));
}
break;
default: