aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/meminfo_unsupported.go
blob: 82ddd30c1b065f6c61c545e68e53a45707406cf1 (plain) (blame)
1
2
3
4
5
6
7
8
// +build !linux,!windows

package system

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