1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-28 13:48:49 +08:00
shirou_gopsutil/mem/mem_aix.go

17 lines
274 B
Go
Raw Normal View History

2021-12-22 21:54:41 +00:00
//go:build aix
2021-11-09 13:14:54 +00:00
// +build aix
package mem
import (
2021-12-22 21:46:33 +00:00
"context"
2021-11-09 13:14:54 +00:00
)
func VirtualMemory() (*VirtualMemoryStat, error) {
2021-12-22 21:46:33 +00:00
return VirtualMemoryWithContext(context.Background())
2021-11-09 13:14:54 +00:00
}
func SwapMemory() (*SwapMemoryStat, error) {
2021-12-22 21:46:33 +00:00
return SwapMemoryWithContext(context.Background())
2021-11-09 13:14:54 +00:00
}