cpu_aix.go 253 B

12345678910111213141516
  1. //go:build aix
  2. // +build aix
  3. package cpu
  4. import (
  5. "context"
  6. )
  7. func Times(percpu bool) ([]TimesStat, error) {
  8. return TimesWithContext(context.Background(), percpu)
  9. }
  10. func Info() ([]InfoStat, error) {
  11. return InfoWithContext(context.Background())
  12. }