diff options
Diffstat (limited to 'include/linux/seccomp.h')
-rw-r--r-- | include/linux/seccomp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/seccomp.h b/include/linux/seccomp.h index b4ce2c816e06..317ccb78cf40 100644 --- a/include/linux/seccomp.h +++ b/include/linux/seccomp.h | |||
@@ -19,6 +19,7 @@ | |||
19 | * selects the least permissive choice. | 19 | * selects the least permissive choice. |
20 | */ | 20 | */ |
21 | #define SECCOMP_RET_KILL 0x00000000U /* kill the task immediately */ | 21 | #define SECCOMP_RET_KILL 0x00000000U /* kill the task immediately */ |
22 | #define SECCOMP_RET_TRAP 0x00030000U /* disallow and force a SIGSYS */ | ||
22 | #define SECCOMP_RET_ERRNO 0x00050000U /* returns an errno */ | 23 | #define SECCOMP_RET_ERRNO 0x00050000U /* returns an errno */ |
23 | #define SECCOMP_RET_ALLOW 0x7fff0000U /* allow */ | 24 | #define SECCOMP_RET_ALLOW 0x7fff0000U /* allow */ |
24 | 25 | ||