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