github.com/rhatdan/docker@v0.7.7-0.20180119204836-47a0dcbcd20a/pkg/mount/mountinfo_unsupported.go (about) 1 // +build !windows,!linux,!freebsd freebsd,!cgo 2 3 package mount 4 5 import ( 6 "fmt" 7 "runtime" 8 ) 9 10 func parseMountTable() ([]*Info, error) { 11 return nil, fmt.Errorf("mount.parseMountTable is not implemented on %s/%s", runtime.GOOS, runtime.GOARCH) 12 }