8000 Merge pull request #248 from michael-holzheu/seccomp_add_ppc_and_s390x · mlaventure/engine-api@c15549e · GitHub
[go: up one dir, main page]

Skip to content

Commit c15549e

Browse files
committed
Merge pull request docker#248 from michael-holzheu/seccomp_add_ppc_and_s390x
seccomp: Add ppc and s390x to types/seccomp.go
2 parents 060cfa8 + f015fc3 commit c15549e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

types/seccomp.go

+5
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ const (
2424
ArchMIPSEL Arch = "SCMP_ARCH_MIPSEL"
2525
ArchMIPSEL64 Arch = "SCMP_ARCH_MIPSEL64"
2626
ArchMIPSEL64N32 Arch = "SCMP_ARCH_MIPSEL64N32"
27+
ArchPPC Arch = "SCMP_ARCH_PPC"
28+
ArchPPC64 Arch = "SCMP_ARCH_PPC64"
29+
ArchPPC64LE Arch = "SCMP_ARCH_PPC64LE"
30+
ArchS390 Arch = "SCMP_ARCH_S390"
31+
ArchS390X Arch = "SCMP_ARCH_S390X"
2732
)
2833

2934
// Action taken upon Seccomp rule match

0 commit comments

Comments
 (0)
0