ptrace,seccomp: Add PTRACE_SECCOMP support
[linux-block.git] / include / linux / seccomp.h
index 317ccb78cf400fe92beff1c115bf7b330091e877..5818e869651b36183fc0e922d6fc279496803118 100644 (file)
@@ -21,6 +21,7 @@
 #define SECCOMP_RET_KILL       0x00000000U /* kill the task immediately */
 #define SECCOMP_RET_TRAP       0x00030000U /* disallow and force a SIGSYS */
 #define SECCOMP_RET_ERRNO      0x00050000U /* returns an errno */
+#define SECCOMP_RET_TRACE      0x7ff00000U /* pass to a tracer or disallow */
 #define SECCOMP_RET_ALLOW      0x7fff0000U /* allow */
 
 /* Masks for the return value sections. */