2024-02-17 03:48:29 +00:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2022-10-11 13:17:17 -07:00
|
|
|
//go:build (darwin && !cgo) || ios
|
2017-03-19 22:13:22 +01:00
|
|
|
|
|
|
|
package disk
|
|
|
|
|
2017-12-31 15:25:49 +09:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2024-02-17 03:48:29 +00:00
|
|
|
"github.com/shirou/gopsutil/v4/internal/common"
|
2017-12-31 15:25:49 +09:00
|
|
|
)
|
2017-03-19 22:13:22 +01:00
|
|
|
|
2017-12-31 15:25:49 +09:00
|
|
|
func IOCountersWithContext(ctx context.Context, names ...string) (map[string]IOCountersStat, error) {
|
2017-03-19 22:13:22 +01:00
|
|
|
return nil, common.ErrNotImplementedError
|
|
|
|
}
|