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

17 lines
295 B
Go
Raw Normal View History

//go:build aix && !cgo
// +build aix,!cgo
package load
import (
"context"
)
func AvgWithContext(ctx context.Context) (*AvgStat, error) {
return nil, common.ErrNotImplementedError
}
func MiscWithContext(ctx context.Context) (*MiscStat, error) {
return nil, common.ErrNotImplementedError
}