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 3499eac commit a8d93c6Copy full SHA for a8d93c6
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