podman-build/libpod/volume_internal_freebsd.go
2025-10-11 12:30:35 +09:00

12 lines
170 B
Go

//go:build !remote
package libpod
import (
"golang.org/x/sys/unix"
)
func detachUnmount(mountPoint string) error {
return unix.Unmount(mountPoint, unix.MNT_FORCE)
}