2014-08-08 22:09:28 +08:00
|
|
|
// +build darwin
|
|
|
|
|
|
|
|
package gopsutil
|
|
|
|
|
2014-11-27 09:18:15 +08:00
|
|
|
import (
|
|
|
|
common "github.com/shirou/gopsutil/common"
|
|
|
|
)
|
|
|
|
|
2014-08-08 22:09:28 +08:00
|
|
|
func DiskPartitions(all bool) ([]DiskPartitionStat, error) {
|
|
|
|
|
2014-11-27 09:18:15 +08:00
|
|
|
return nil, common.NotImplementedError
|
2014-08-08 22:09:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func DiskIOCounters() (map[string]DiskIOCountersStat, error) {
|
2014-11-27 09:18:15 +08:00
|
|
|
return nil, common.NotImplementedError
|
2014-08-08 22:09:28 +08:00
|
|
|
}
|