disk_aix.go 509 B

12345678910111213141516171819202122
  1. //go:build aix
  2. // +build aix
  3. package disk
  4. import (
  5. "context"
  6. "github.com/shirou/gopsutil/v3/internal/common"
  7. )
  8. func IOCountersWithContext(ctx context.Context, names ...string) (map[string]IOCountersStat, error) {
  9. return nil, common.ErrNotImplementedError
  10. }
  11. func SerialNumberWithContext(ctx context.Context, name string) (string, error) {
  12. return "", common.ErrNotImplementedError
  13. }
  14. func LabelWithContext(ctx context.Context, name string) (string, error) {
  15. return "", common.ErrNotImplementedError
  16. }