Add MemInfo to the system pkg.
MemInfo provides a simple API to get memory information from the system. Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
parent
460ef61c01
commit
8e63996484
4 changed files with 128 additions and 0 deletions
7
system/meminfo_unsupported.go
Normal file
7
system/meminfo_unsupported.go
Normal file
|
@ -0,0 +1,7 @@
|
|||
// +build !linux
|
||||
|
||||
package system
|
||||
|
||||
func ReadMemInfo() (*MemInfo, error) {
|
||||
return nil, ErrNotSupportedPlatform
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue