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