PR_GET_SECCOMP
(2)get the secure computing mode
#include <linux/prctl.h> /* Definition of PR_* constants */ #include <sys/prctl.h> int prctl(PR_GET_SECCOMP);
LIBRARY
DESCRIPTION
Return the secure computing mode of the calling thread.
If the caller is not in secure computing mode, this operation returns 0; if the caller is in strict secure computing mode, then the prctl() call will cause a SIGKILL signal to be sent to the process. If the caller is in filter mode, and this system call is allowed by the seccomp filters, it returns 2; otherwise, the process is killed with a SIGKILL signal.
This operation is available only if the kernel is configured with CONFIG_SECCOMP enabled.