mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
17 lines
253 B
Go
17 lines
253 B
Go
//go:build aix
|
|
// +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())
|
|
}
|