github.com/fcwu/docker@v1.4.2-0.20150115145920-2a69ca89f0df/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 }