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