Removed mount code from container. It belongs in graph

Upstream-commit: 6f6eaca861fec53a6d21d420b813041dc93e8b93
Component: engine
This commit is contained in:
Solomon Hykes
2013-03-20 22:16:02 -07:00
parent 7eb24c3b20
commit 479b507538
2 changed files with 0 additions and 14 deletions
-7
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")
}
-7
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)
}