packer-cn/vendor/github.com/shirou/gopsutil/cpu/cpu_darwin_nocgo.go

15 lines
294 B
Go
Raw Normal View History

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