mem_aix.go 274 B

12345678910111213141516
  1. //go:build aix
  2. // +build aix
  3. package mem
  4. import (
  5. "context"
  6. )
  7. func VirtualMemory() (*VirtualMemoryStat, error) {
  8. return VirtualMemoryWithContext(context.Background())
  9. }
  10. func SwapMemory() (*SwapMemoryStat, error) {
  11. return SwapMemoryWithContext(context.Background())
  12. }