mount_linux.go 240 B

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