Files
docker-cli/components/engine/graph/mount_linux.go
Solomon Hykes 9cae75046a docker/graph: a store for filesystem images and the graph of their relationships
Upstream-commit: 33f6a0aaf58734f39af564123ca2c0056a3f1bd4
Component: engine
2013-03-18 00:15:35 -07:00

8 lines
192 B
Go

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