2014-04-22 10:58:03 +08:00
|
|
|
// +build freebsd
|
|
|
|
|
|
|
|
package gopsutil
|
|
|
|
|
2014-05-01 11:01:30 +08:00
|
|
|
func VirtualMemory() (*VirtualMemoryStat, error) {
|
|
|
|
ret := &VirtualMemoryStat{}
|
2014-04-22 10:58:03 +08:00
|
|
|
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
2014-05-01 11:01:30 +08:00
|
|
|
func SwapMemory() (*SwapMemoryStat, error) {
|
|
|
|
ret := &SwapMemoryStat{}
|
2014-04-22 10:58:03 +08:00
|
|
|
|
|
|
|
return ret, nil
|
|
|
|
}
|