disk_darwin_nocgo.go 399 B

123456789101112131415161718
  1. // +build darwin
  2. // +build !cgo
  3. package disk
  4. import (
  5. "context"
  6. "github.com/shirou/gopsutil/internal/common"
  7. )
  8. func IOCounters(names ...string) (map[string]IOCountersStat, error) {
  9. return IOCountersWithContext(context.Background(), names...)
  10. }
  11. func IOCountersWithContext(ctx context.Context, names ...string) (map[string]IOCountersStat, error) {
  12. return nil, common.ErrNotImplementedError
  13. }