seccomp: Rename SECCOMP_RET_KILL to SECCOMP_RET_KILL_THREAD
[linux-block.git] / include / uapi / linux / seccomp.h
index f94433263e4b63e0eaf6fccaf0fd44d326250d79..5a03f699eb17664116a88d47caba47d6c6cee961 100644 (file)
@@ -27,7 +27,8 @@
  * The ordering ensures that a min_t() over composed return values always
  * selects the least permissive choice.
  */
-#define SECCOMP_RET_KILL       0x00000000U /* kill the task immediately */
+#define SECCOMP_RET_KILL_THREAD        0x00000000U /* kill the thread */
+#define SECCOMP_RET_KILL       SECCOMP_RET_KILL_THREAD
 #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 */