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

15 lines
288 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) {
return []TimesStat{}, common.NotImplementedError
}
func allCPUTimes() ([]TimesStat, error) {
return []TimesStat{}, common.NotImplementedError
}