14 lines
282 B
Go
14 lines
282 B
Go
//go:build !linux
|
|
|
|
package platform
|
|
|
|
import "errors"
|
|
|
|
func loopChangeFD(loopDev, newFile string) error {
|
|
return errors.New("LOOP_CHANGE_FD not available on this platform")
|
|
}
|
|
|
|
func bindMount(src, dst string) error {
|
|
return errors.New("bind mount not available on this platform")
|
|
}
|