summaryrefslogtreecommitdiffhomepage
path: root/pkg/abi/linux/seccomp.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/abi/linux/seccomp.go')
-rw-r--r--pkg/abi/linux/seccomp.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/abi/linux/seccomp.go b/pkg/abi/linux/seccomp.go
index 5be3f10f9..e64501fac 100644
--- a/pkg/abi/linux/seccomp.go
+++ b/pkg/abi/linux/seccomp.go
@@ -30,8 +30,10 @@ const (
SECCOMP_GET_ACTION_AVAIL = 2
)
+// BPFAction is an action for a BPF filter.
type BPFAction uint32
+// BPFAction definitions.
const (
SECCOMP_RET_KILL_PROCESS BPFAction = 0x80000000
SECCOMP_RET_KILL_THREAD BPFAction = 0x00000000