2016-11-21 23:18:52 +01:00
|
|
|
// +build !darwin,!linux,!freebsd,!openbsd,!windows
|
2016-08-22 15:31:26 -07:00
|
|
|
|
|
|
|
package disk
|
|
|
|
|
|
|
|
import "github.com/shirou/gopsutil/internal/common"
|
|
|
|
|
2017-04-06 17:54:50 -07:00
|
|
|
func IOCountersForNames(names []string) (map[string]IOCountersStat, error) {
|
2016-08-22 15:31:26 -07: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
|
|
|
|
}
|