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 9e530c6 commit 8289d19Copy full SHA for 8289d19
src/util/syscall_sandbox.cpp
@@ -40,6 +40,10 @@ bool g_syscall_sandbox_log_violation_before_terminating{false};
40
#error Syscall sandbox is an experimental feature currently available only under Linux x86-64.
41
#endif // defined(__x86_64__)
42
43
+#ifndef SECCOMP_RET_KILL_PROCESS
44
+#define SECCOMP_RET_KILL_PROCESS 0x80000000U
45
+#endif
46
+
47
// This list of syscalls in LINUX_SYSCALLS is only used to map syscall numbers to syscall names in
48
// order to be able to print user friendly error messages which include the syscall name in addition
49
// to the syscall number.
0 commit comments