seccomp: Allow clock_gettime() on http api thread

Signed-off-by: Stefan Kober <stefan.kober@cyberus-technology.de>
This commit is contained in:
Stefan Kober 2025-02-28 13:32:18 +01:00 committed by Rob Bradford
parent 9e1fb3bfa1
commit 03bb59db69

View file

@ -825,6 +825,7 @@ fn http_api_thread_rules() -> Result<Vec<(i64, Vec<SeccompRule>)>, BackendError>
Ok(vec![
(libc::SYS_accept4, vec![]),
(libc::SYS_brk, vec![]),
(libc::SYS_clock_gettime, vec![]),
(libc::SYS_close, vec![]),
(libc::SYS_dup, vec![]),
(libc::SYS_epoll_create1, vec![]),