1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
shirou_gopsutil/cpu/cpu_darwin_nocgo.go

15 lines
294 B
Go
Raw Normal View History

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