mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
16 lines
229 B
Go
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
|
|
}
|