github.com/endocode/docker@v1.4.2-0.20160113120958-46eb4700391e/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 }