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 3297f5c commit f05a4cdCopy full SHA for f05a4cd
src/util/syscall_sandbox.cpp
@@ -592,6 +592,7 @@ class SeccompPolicyBuilder
592
allowed_syscalls.insert(__NR_getcwd); // get current working directory
593
allowed_syscalls.insert(__NR_getdents); // get directory entries
594
allowed_syscalls.insert(__NR_getdents64); // get directory entries
595
+ allowed_syscalls.insert(__NR_inotify_rm_watch);// remove an existing watch from an inotify instance
596
allowed_syscalls.insert(__NR_linkat); // create relative to a directory file descriptor
597
allowed_syscalls.insert(__NR_lstat); // get file status
598
allowed_syscalls.insert(__NR_mkdir); // create a directory
0 commit comments