github.com/pritambaral/docker@v1.4.2-0.20150120174542-b2fe1b3dd952/daemon/graphdriver/aufs/mount_unsupported.go (about)

     1  // +build !linux
     2  
     3  package aufs
     4  
     5  import "errors"
     6  
     7  const MsRemount = 0
     8  
     9  func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
    10  	return errors.New("mount is not implemented on darwin")
    11  }