We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 289c030 commit b8a0bcbCopy full SHA for b8a0bcb
src/hyperlight_host/src/seccomp/guest.rs
@@ -57,6 +57,8 @@ fn syscalls_allowlist() -> Result<Vec<(i64, Vec<SeccompRule>)>> {
57
// `sched_yield` is needed for many synchronization primitives that may be invoked
58
// on the host function worker thread
59
(libc::SYS_sched_yield, vec![]),
60
+ // `mprotect` is needed by malloc during memory allocation
61
+ (libc::SYS_mprotect, vec![]),
62
])
63
}
64
0 commit comments