pub const SECCOMP_RET_KILL_PROCESS: u32 = 0x8000_0000;
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