2015-06-01 12:40:33 -07:00
|
|
|
// +build !linux,!windows
|
2014-10-13 20:41:22 -07:00
|
|
|
|
|
|
|
package system
|
|
|
|
|
2015-07-29 00:13:12 +08:00
|
|
|
// ReadMemInfo is not supported on platforms other than linux and windows.
|
2014-10-13 20:41:22 -07:00
|
|
|
func ReadMemInfo() (*MemInfo, error) {
|
|
|
|
return nil, ErrNotSupportedPlatform
|
|
|
|
}
|