fix compile error
[platform/upstream/docker-engine.git] / container / container_linux.go
1 package container
2
3 import (
4         "golang.org/x/sys/unix"
5 )
6
7 func detachMounted(path string) error {
8         return unix.Unmount(path, unix.MNT_DETACH)
9 }