You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
399 B
18 lines
399 B
// +build darwin |
|
// +build !cgo |
|
|
|
package disk |
|
|
|
import ( |
|
"context" |
|
|
|
"github.com/shirou/gopsutil/internal/common" |
|
) |
|
|
|
func IOCounters(names ...string) (map[string]IOCountersStat, error) { |
|
return IOCountersWithContext(context.Background(), names...) |
|
} |
|
|
|
func IOCountersWithContext(ctx context.Context, names ...string) (map[string]IOCountersStat, error) { |
|
return nil, common.ErrNotImplementedError |
|
}
|
|
|