mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-12-22 05:35:20 +00:00
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:
parent
1091494320
commit
b8f5687707
@ -884,6 +884,7 @@ fn event_monitor_thread_rules() -> Result<Vec<(i64, Vec<SeccompRule>)>, BackendE
|
|||||||
(libc::SYS_brk, vec![]),
|
(libc::SYS_brk, vec![]),
|
||||||
(libc::SYS_futex, vec![]),
|
(libc::SYS_futex, vec![]),
|
||||||
(libc::SYS_mmap, vec![]),
|
(libc::SYS_mmap, vec![]),
|
||||||
|
(libc::SYS_munmap, vec![]),
|
||||||
(libc::SYS_sched_yield, vec![]),
|
(libc::SYS_sched_yield, vec![]),
|
||||||
(libc::SYS_write, vec![]),
|
(libc::SYS_write, vec![]),
|
||||||
])
|
])
|
||||||
|
Loading…
Reference in New Issue
Block a user