2021-12-22 21:54:41 +00:00
|
|
|
//go:build aix
|
2021-11-09 13:14:54 +00:00
|
|
|
// +build aix
|
|
|
|
|
|
|
|
package disk
|
|
|
|
|
|
|
|
import (
|
2021-12-22 21:46:33 +00:00
|
|
|
"context"
|
2021-11-09 13:14:54 +00:00
|
|
|
|
2021-12-22 21:46:33 +00:00
|
|
|
"github.com/shirou/gopsutil/v3/internal/common"
|
2021-11-09 13:14:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func IOCountersWithContext(ctx context.Context, names ...string) (map[string]IOCountersStat, error) {
|
2021-12-22 21:46:33 +00:00
|
|
|
return nil, common.ErrNotImplementedError
|
2021-11-09 13:14:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func LabelWithContext(ctx context.Context, name string) (string, error) {
|
2021-12-22 21:46:33 +00:00
|
|
|
return "", common.ErrNotImplementedError
|
2021-11-09 13:14:54 +00:00
|
|
|
}
|