meminfo_unsupported.go 205 字节
Newer Older
J
jeff 已提交
1 2 3 4 5 6 7 8
// +build !linux,!windows,!solaris

package system

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