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

19 lines
383 B
Go
Raw Normal View History

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
}