2024-02-17 03:48:29 +00:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2021-12-22 21:54:41 +00:00
|
|
|
//go:build darwin && !cgo
|
2015-10-10 22:13:38 +09:00
|
|
|
|
|
|
|
package cpu
|
|
|
|
|
2024-02-17 03:48:29 +00:00
|
|
|
import "github.com/shirou/gopsutil/v4/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
|
|
|
}
|