mirror of
https://gitlab.com/niansa/libhss.git
synced 2025-03-06 20:49:21 +01:00
Allow mremap
This commit is contained in:
parent
29ef10e749
commit
0569b628d5
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ void enable_limits(const Limits& limits) {
|
|||
if (limits.enable_seccomp) {
|
||||
scmp_filter_ctx ctx = seccomp_init(SCMP_ACT_ERRNO(EOPNOTSUPP));
|
||||
for (const auto sysc : {
|
||||
SCMP_SYS(mmap), SCMP_SYS(mmap2), SCMP_SYS(munmap), SCMP_SYS(brk),
|
||||
SCMP_SYS(mmap), SCMP_SYS(mmap2), SCMP_SYS(munmap), SCMP_SYS(mremap), SCMP_SYS(brk),
|
||||
SCMP_SYS(write), SCMP_SYS(read), SCMP_SYS(close),
|
||||
SCMP_SYS(exit), SCMP_SYS(exit_group)
|
||||
}) {
|
||||
|
|
Loading…
Add table
Reference in a new issue