1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
shirou_gopsutil/mem_freebsd.go
2014-05-01 12:01:30 +09:00

16 lines
229 B
Go

// +build freebsd
package gopsutil
func VirtualMemory() (*VirtualMemoryStat, error) {
ret := &VirtualMemoryStat{}
return ret, nil
}
func SwapMemory() (*SwapMemoryStat, error) {
ret := &SwapMemoryStat{}
return ret, nil
}