mount_unsupported.go 293 B

123456789101112
  1. // +build !linux
  2. package aufs
  3. import "errors"
  4. // MsRemount declared to specify a non-linux system mount.
  5. const MsRemount = 0
  6. func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
  7. return errors.New("mount is not implemented on this platform")
  8. }