1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Removed mount code from container. It belongs in graph

This commit is contained in:
Solomon Hykes 2013-03-20 22:16:02 -07:00
parent ea258c4492
commit 6f6eaca861
2 changed files with 0 additions and 14 deletions

View file

@ -1,7 +0,0 @@
package docker
import "errors"
func mount(source string, target string, fstype string, flags uintptr, data string) (err error) {
return errors.New("mount is not implemented on darwin")
}

View file

@ -1,7 +0,0 @@
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)
}