//go:build !linux || !cgo || !seccomp // +build !linux !cgo !seccomp package seccomp import ( "errors" "github.com/opencontainers/runc/libcontainer/configs" ) var ErrSeccompNotEnabled = errors.New("seccomp: config provided but seccomp not supported") // InitSeccomp does nothing because seccomp is not supported. func InitSeccomp(config *configs.Seccomp) (int, error) { if config != nil { return -1, ErrSeccompNotEnabled } return -1, nil } // Version returns major, minor, and micro. func Version() (uint, uint, uint) { return 0, 0, 0 } // Enabled is true if seccomp support is compiled in. const Enabled = false