1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-28 13:48:49 +08:00
shirou_gopsutil/mem_freebsd.go
2014-04-30 16:19:39 +09:00

16 lines
225 B
Go

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