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