mirror of
https://github.com/docker/docs.git
synced 2026-03-30 07:48:52 +07:00
12 lines
240 B
Go
12 lines
240 B
Go
// +build amd64
|
|
|
|
package aufs
|
|
|
|
import "syscall"
|
|
|
|
const MsRemount = syscall.MS_REMOUNT
|
|
|
|
func mount(source string, target string, fstype string, flags uintptr, data string) error {
|
|
return syscall.Mount(source, target, fstype, flags, data)
|
|
}
|