github.com/uriddle/docker@v0.0.0-20210926094723-4072e6aeb013/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  }