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 e816f24 commit 6f4093fCopy full SHA for 6f4093f
vmm/src/default_syscalls/x86_64.rs
@@ -23,7 +23,7 @@ pub const ALLOWED_SYSCALLS: &[i64] = &[
23
libc::SYS_futex,
24
libc::SYS_ioctl,
25
libc::SYS_lseek,
26
- #[cfg(musl)]
+ #[cfg(target_env = "musl")]
27
libc::SYS_madvise,
28
libc::SYS_mmap,
29
libc::SYS_munmap,
@@ -243,7 +243,7 @@ pub fn default_context() -> Result<SeccompFilterContext, Error> {
243
244
(0, vec![SeccompRule::new(vec![], SeccompAction::Allow)]),
245
),
246
247
(
248
249
0 commit comments