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