mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ce25968008
full diff: https://github.com/moby/sys/compare/signal/v0.5.0...signal/v0.6.0 Modules: - github.com/moby/sys/mount v0.3.0 - github.com/moby/sys/mountinfo v0.5.0 - github.com/moby/sys/signal v0.6.0 - github.com/moby/sys/symlink v0.2.0 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
19 lines
528 B
Go
19 lines
528 B
Go
//go:build (!windows && !linux && !freebsd && !openbsd && !darwin) || (freebsd && !cgo) || (openbsd && !cgo) || (darwin && !cgo)
|
|
// +build !windows,!linux,!freebsd,!openbsd,!darwin freebsd,!cgo openbsd,!cgo darwin,!cgo
|
|
|
|
package mountinfo
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
var errNotImplemented = fmt.Errorf("not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
|
|
|
|
func parseMountTable(_ FilterFunc) ([]*Info, error) {
|
|
return nil, errNotImplemented
|
|
}
|
|
|
|
func mounted(path string) (bool, error) {
|
|
return false, errNotImplemented
|
|
}
|