shirou_gopsutil/cpu/cpu_darwin_nocgo.go

15 lines
294 B
Go
Raw Normal View History

// +build darwin
// +build !cgo
package cpu
2015-10-19 23:04:57 +08:00
import "github.com/shirou/gopsutil/internal/common"
func perCPUTimes() ([]TimesStat, error) {
2016-04-01 20:34:39 +08:00
return []TimesStat{}, common.ErrNotImplementedError
}
func allCPUTimes() ([]TimesStat, error) {
2016-04-01 20:34:39 +08:00
return []TimesStat{}, common.ErrNotImplementedError
}