seccomp: raspbian: allow futex(2), sysinfo(2)

master
Michael Santos 6 years ago
parent da9d2f8e88
commit 9ae3dcc1a1

@ -250,6 +250,14 @@ xmppipe_sandbox_init(xmppipe_state_t *state)
SC_ALLOW(prctl),
#endif
#ifdef __NR_futex
SC_ALLOW(futex),
#endif
#ifdef __NR_sysinfo
SC_ALLOW(sysinfo),
#endif
/* Default deny */
BPF_STMT(BPF_RET+BPF_K, SECCOMP_FILTER_FAIL)
};

Loading…
Cancel
Save