mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
bd2e288e56
This function was added in 9c4570a958
,
but appears to never have been used.
Removing it, as it's not used in the codebase and, from a quick
search on GitHub, also doesn't look to be used by other projects.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
11 lines
269 B
Go
11 lines
269 B
Go
// +build linux freebsd
|
|
|
|
package system // import "github.com/docker/docker/pkg/system"
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
// Unmount is a platform-specific helper function to call
|
|
// the unmount syscall.
|
|
func Unmount(dest string) error {
|
|
return unix.Unmount(dest, 0)
|
|
}
|