github.com/mephux/docker@v1.6.0-rc5/pkg/system/xattrs_unsupported.go (about) 1 // +build !linux 2 3 package system 4 5 func Lgetxattr(path string, attr string) ([]byte, error) { 6 return nil, ErrNotSupportedPlatform 7 } 8 9 func Lsetxattr(path string, attr string, data []byte, flags int) error { 10 return ErrNotSupportedPlatform 11 }