github.com/zhouyu0/docker-note@v0.0.0-20190722021225-b8d3825084db/profiles/seccomp/seccomp_unsupported.go (about)

     1  // +build linux,!seccomp
     2  
     3  package seccomp // import "github.com/docker/docker/profiles/seccomp"
     4  
     5  import (
     6  	"github.com/docker/docker/api/types"
     7  )
     8  
     9  // DefaultProfile returns a nil pointer on unsupported systems.
    10  func DefaultProfile() *types.Seccomp {
    11  	return nil
    12  }