2017-03-15 03:40:30 +08:00
|
|
|
// +build !darwin,!linux,!freebsd,!openbsd,!solaris,!windows
|
2016-08-23 06:31:26 +08:00
|
|
|
|
|
|
|
package mem
|
|
|
|
|
|
|
|
import "github.com/shirou/gopsutil/internal/common"
|
|
|
|
|
|
|
|
func VirtualMemory() (*VirtualMemoryStat, error) {
|
|
|
|
return nil, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func SwapMemory() (*SwapMemoryStat, error) {
|
|
|
|
return nil, common.ErrNotImplementedError
|
|
|
|
}
|