Constant SECCOMP_RET_KILL_PROCESS
pub const SECCOMP_RET_KILL_PROCESS: u32 = 0x8000_0000; // 2_147_483_648u32
Available on crate feature
dep_nc
only.Expand description
All BPF programs must return a 32-bit value.
The bottom 16-bits are for optional return data. The upper 16-bits are ordered from least permissive values to most, as a signed value (so 0x8000000 is negative).
The ordering ensures that a min_t()
over composed return values always
selects the least permissive choice.
kill the process