1// +build !darwin,!linux,!freebsd,!openbsd,!windows,!solaris
2
3package disk
4
5import (
6	"context"
7
8	"github.com/shirou/gopsutil/v3/internal/common"
9)
10
11func IOCountersWithContext(ctx context.Context, names ...string) (map[string]IOCountersStat, error) {
12	return nil, common.ErrNotImplementedError
13}
14
15func PartitionsWithContext(ctx context.Context, all bool) ([]PartitionStat, error) {
16	return []PartitionStat{}, common.ErrNotImplementedError
17}
18
19func UsageWithContext(ctx context.Context, path string) (*UsageStat, error) {
20	return nil, common.ErrNotImplementedError
21}
22
23func SerialNumberWithContext(ctx context.Context, name string) (string, error) {
24	return "", common.ErrNotImplementedError
25}
26
27func LabelWithContext(ctx context.Context, name string) (string, error) {
28	return "", common.ErrNotImplementedError
29}
30