Files
docker-docs/pkg/system/meminfo_unsupported.go
2015-08-13 18:47:13 +08:00

9 lines
196 B
Go

// +build !linux,!windows
package system
// ReadMemInfo is not supported on platforms other than linux and windows.
func ReadMemInfo() (*MemInfo, error) {
return nil, ErrNotSupportedPlatform
}