2021-12-23 05:54:41 +08:00
|
|
|
//go:build aix
|
2021-11-09 21:14:54 +08:00
|
|
|
// +build aix
|
|
|
|
|
|
|
|
package cpu
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Times(percpu bool) ([]TimesStat, error) {
|
|
|
|
return TimesWithContext(context.Background(), percpu)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Info() ([]InfoStat, error) {
|
|
|
|
return InfoWithContext(context.Background())
|
|
|
|
}
|