Files
docker-cli/components/engine/fs/mount_linux.go
shin- 04d04bc71b Implementing mounting/unmounting of images. Currently missing Mounpoint#Deregister
Upstream-commit: 04bcdf9030123a0d59a930e072429664a0e11194
Component: engine
2013-02-21 23:01:13 -08:00

9 lines
194 B
Go

package docker
import "syscall"
func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
return syscall.Mount(source, target, fstype, flags, data)
}