mount_linux.go 223 B

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