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