open-nomad/vendor/github.com/shirou/gopsutil/cpu/cpu_darwin_nocgo.go

15 lines
294 B
Go
Raw Normal View History

2016-02-12 18:02:16 +00:00
// +build darwin
// +build !cgo
package cpu
import "github.com/shirou/gopsutil/internal/common"
2016-05-09 15:19:04 +00:00
func perCPUTimes() ([]TimesStat, error) {
return []TimesStat{}, common.ErrNotImplementedError
2016-02-12 18:02:16 +00:00
}
2016-05-09 15:19:04 +00:00
func allCPUTimes() ([]TimesStat, error) {
return []TimesStat{}, common.ErrNotImplementedError
2016-02-12 18:02:16 +00:00
}