nightingale1/vendor/github.com/shirou/gopsutil/cpu/cpu_darwin_nocgo.go

15 lines
294 B
Go
Raw Normal View History

2020-09-26 17:02:52 +08: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
}