From 2ce8a26a9a834118f861e2eeee956adc7fba4050 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Wed, 1 Nov 2017 02:00:04 +0000 Subject: [PATCH] Provide fallback definitions for SECCOMP_RET_* constants * xlat/seccomp_ret_action.in: Add fallback definitions. --- xlat/seccomp_ret_action.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/xlat/seccomp_ret_action.in b/xlat/seccomp_ret_action.in index 6212dcb6..6874db4e 100644 --- a/xlat/seccomp_ret_action.in +++ b/xlat/seccomp_ret_action.in @@ -1,5 +1,5 @@ -SECCOMP_RET_KILL -SECCOMP_RET_TRAP -SECCOMP_RET_ERRNO -SECCOMP_RET_TRACE -SECCOMP_RET_ALLOW +SECCOMP_RET_KILL 0 +SECCOMP_RET_TRAP 0x00030000U +SECCOMP_RET_ERRNO 0x00050000U +SECCOMP_RET_TRACE 0x7ff00000U +SECCOMP_RET_ALLOW 0x7fff0000U -- 2.40.0