2016-11-22 06:18:52 +08:00
|
|
|
// +build !darwin,!linux,!freebsd,!openbsd,!windows
|
2016-08-23 06:31:26 +08:00
|
|
|
|
|
|
|
package disk
|
|
|
|
|
|
|
|
import "github.com/shirou/gopsutil/internal/common"
|
|
|
|
|
2017-04-14 09:53:09 +08:00
|
|
|
func IOCounters(names ...string) (map[string]IOCountersStat, error) {
|
2016-08-23 06:31:26 +08:00
|
|
|
return nil, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func Partitions(all bool) ([]PartitionStat, error) {
|
|
|
|
return []PartitionStat{}, common.ErrNotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func Usage(path string) (*UsageStat, error) {
|
|
|
|
return nil, common.ErrNotImplementedError
|
|
|
|
}
|