vmm: seccomp: Add munmap() to the "event-monitor" thread

Needed for Rust 1.74 on aarch64 with musl

Signed-off-by: Rob Bradford <rbradford@rivosinc.com>
This commit is contained in:
Rob Bradford 2024-02-29 19:10:04 +00:00
parent 1091494320
commit b8f5687707

View File

@ -884,6 +884,7 @@ fn event_monitor_thread_rules() -> Result<Vec<(i64, Vec<SeccompRule>)>, BackendE
(libc::SYS_brk, vec![]),
(libc::SYS_futex, vec![]),
(libc::SYS_mmap, vec![]),
(libc::SYS_munmap, vec![]),
(libc::SYS_sched_yield, vec![]),
(libc::SYS_write, vec![]),
])