github.com/rita33cool1/iot-system-gateway@v0.0.0-20200911033302-e65bde238cc5/docker-engine/daemon/graphdriver/aufs/mount_unsupported.go (about)

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