mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 06:36:32 +00:00
15 lines
294 B
Go
15 lines
294 B
Go
|
// +build darwin
|
||
|
// +build !cgo
|
||
|
|
||
|
package cpu
|
||
|
|
||
|
import "github.com/shirou/gopsutil/internal/common"
|
||
|
|
||
|
func perCPUTimes() ([]TimesStat, error) {
|
||
|
return []TimesStat{}, common.ErrNotImplementedError
|
||
|
}
|
||
|
|
||
|
func allCPUTimes() ([]TimesStat, error) {
|
||
|
return []TimesStat{}, common.ErrNotImplementedError
|
||
|
}
|