mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
16 lines
231 B
Go
16 lines
231 B
Go
// +build freebsd
|
|
|
|
package gopsutil
|
|
|
|
func Virtual_memory() (Virtual_memoryStat, error) {
|
|
ret := Virtual_memoryStat{}
|
|
|
|
return ret, nil
|
|
}
|
|
|
|
func Swap_memory() (Swap_memoryStat, error) {
|
|
ret := Swap_memoryStat{}
|
|
|
|
return ret, nil
|
|
}
|