2014-04-22 10:58:03 +08:00
|
|
|
// +build freebsd
|
|
|
|
|
|
|
|
package gopsutil
|
|
|
|
|
2014-04-30 14:32:05 +08:00
|
|
|
func VirtualMemory() (VirtualMemoryStat, error) {
|
2014-04-30 15:19:39 +08:00
|
|
|
ret := VirtualMemoryStat{}
|
2014-04-22 10:58:03 +08:00
|
|
|
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
2014-04-30 14:32:05 +08:00
|
|
|
func SwapMemory() (SwapMemoryStat, error) {
|
2014-04-30 15:19:39 +08:00
|
|
|
ret := SwapMemoryStat{}
|
2014-04-22 10:58:03 +08:00
|
|
|
|
|
|
|
return ret, nil
|
|
|
|
}
|