2016-03-25 23:38:00 +00:00
|
|
|
// +build !linux,!windows,!solaris
|
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
|
|
|
|
}
|