2015-10-10 21:13:38 +08:00
|
|
|
// +build darwin
|
|
|
|
// +build !cgo
|
|
|
|
|
|
|
|
package cpu
|
|
|
|
|
2015-10-19 23:04:57 +08:00
|
|
|
import "github.com/shirou/gopsutil/internal/common"
|
2015-10-10 21:13:38 +08:00
|
|
|
|
|
|
|
func perCPUTimes() ([]CPUTimesStat, error) {
|
|
|
|
return []CPUTimesStat{}, common.NotImplementedError
|
|
|
|
}
|
|
|
|
|
|
|
|
func allCPUTimes() ([]CPUTimesStat, error) {
|
|
|
|
return []CPUTimesStat{}, common.NotImplementedError
|
|
|
|
}
|