Merge pull request #475 from michael-holzheu/seccomp_add_ppc_and_s390x

seccomp: Add ppc and s390x to specs-go/config.go
This commit is contained in:
Mrunal Patel 2016-06-01 13:14:41 -07:00
commit f0e14cd4b1
1 changed files with 5 additions and 0 deletions

View File

@ -420,6 +420,11 @@ const (
ArchMIPSEL Arch = "SCMP_ARCH_MIPSEL" ArchMIPSEL Arch = "SCMP_ARCH_MIPSEL"
ArchMIPSEL64 Arch = "SCMP_ARCH_MIPSEL64" ArchMIPSEL64 Arch = "SCMP_ARCH_MIPSEL64"
ArchMIPSEL64N32 Arch = "SCMP_ARCH_MIPSEL64N32" ArchMIPSEL64N32 Arch = "SCMP_ARCH_MIPSEL64N32"
ArchPPC Arch = "SCMP_ARCH_PPC"
ArchPPC64 Arch = "SCMP_ARCH_PPC64"
ArchPPC64LE Arch = "SCMP_ARCH_PPC64LE"
ArchS390 Arch = "SCMP_ARCH_S390"
ArchS390X Arch = "SCMP_ARCH_S390X"
) )
// Action taken upon Seccomp rule match // Action taken upon Seccomp rule match