mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-28 13:48:49 +08:00
17 lines
295 B
Go
17 lines
295 B
Go
![]() |
//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
|
||
|
}
|