gopkg.in/dotcloud/docker.v1@v1.13.1/daemon/graphdriver/aufs/mount_linux.go (about) 1 package aufs 2 3 import "syscall" 4 5 func mount(source string, target string, fstype string, flags uintptr, data string) error { 6 return syscall.Mount(source, target, fstype, flags, data) 7 }