github.com/afein/docker@v1.8.2/daemon/graphdriver/aufs/mount_linux.go (about)

     1  package aufs
     2  
     3  import "syscall"
     4  
     5  const MsRemount = syscall.MS_REMOUNT
     6  
     7  func mount(source string, target string, fstype string, flags uintptr, data string) error {
     8  	return syscall.Mount(source, target, fstype, flags, data)
     9  }