Home
last modified time | relevance | path

Searched refs:SECCOMP_RET_KILL_PROCESS (Results 1 – 6 of 6) sorted by relevance

/linux-6.15/Documentation/translations/zh_CN/userspace-api/
H A Dseccomp_filter.rst77 返回值总会使用最高优先级的值。(比如 ``SECCOMP_RET_KILL_PROCESS`` 总是被优先
82 ``SECCOMP_RET_KILL_PROCESS``:
/linux-6.15/tools/include/uapi/linux/
H A Dseccomp.h38 #define SECCOMP_RET_KILL_PROCESS 0x80000000U /* kill the process */ macro
/linux-6.15/include/uapi/linux/
H A Dseccomp.h38 #define SECCOMP_RET_KILL_PROCESS 0x80000000U /* kill the process */ macro
/linux-6.15/kernel/
H A Dseccomp.c414 return SECCOMP_RET_KILL_PROCESS; in seccomp_run_filters()
1019 case SECCOMP_RET_KILL_PROCESS: in seccomp_log()
1340 case SECCOMP_RET_KILL_PROCESS: in __seccomp_filter()
2054 case SECCOMP_RET_KILL_PROCESS: in seccomp_get_action_avail()
/linux-6.15/Documentation/userspace-api/
H A Dseccomp_filter.rst90 ``SECCOMP_RET_KILL_PROCESS`` will always take precedence.)
94 ``SECCOMP_RET_KILL_PROCESS``:
/linux-6.15/tools/testing/selftests/seccomp/
H A Dseccomp_bpf.c110 #ifndef SECCOMP_RET_KILL_PROCESS
111 #define SECCOMP_RET_KILL_PROCESS 0x80000000U /* kill the process */ macro
831 int kill = kill_how == KILL_PROCESS ? SECCOMP_RET_KILL_PROCESS : 0xAAAAAAAA; in kill_thread_or_group()