2021-12-22 21:54:41 +00:00
|
|
|
//go:build darwin && !cgo
|
|
|
|
// +build darwin,!cgo
|
2015-10-10 22:13:38 +09:00
|
|
|
|
|
|
|
package cpu
|
|
|
|
|
2021-11-06 09:53:56 +00:00
|
|
|
import "github.com/shirou/gopsutil/v3/internal/common"
|
2015-10-10 22:13:38 +09:00
|
|
|
|
2016-03-22 23:09:12 +09:00
|
|
|
func perCPUTimes() ([]TimesStat, error) {
|
2016-04-01 21:34:39 +09:00
|
|
|
return []TimesStat{}, common.ErrNotImplementedError
|
2015-10-10 22:13:38 +09:00
|
|
|
}
|
|
|
|
|
2016-03-22 23:09:12 +09:00
|
|
|
func allCPUTimes() ([]TimesStat, error) {
|
2016-04-01 21:34:39 +09:00
|
|
|
return []TimesStat{}, common.ErrNotImplementedError
|
2015-10-10 22:13:38 +09:00
|
|
|
}
|