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

19 lines
345 B
Go
Raw Normal View History

//go:build aix && !cgo
// +build aix,!cgo
package load
import (
"context"
2022-06-03 17:43:52 +02:00
"github.com/shirou/gopsutil/v3/internal/common"
)
func AvgWithContext(ctx context.Context) (*AvgStat, error) {
return nil, common.ErrNotImplementedError
}
func MiscWithContext(ctx context.Context) (*MiscStat, error) {
return nil, common.ErrNotImplementedError
}