cpu_darwin_nocgo.go 294 B

1234567891011121314
  1. // +build darwin
  2. // +build !cgo
  3. package cpu
  4. import "github.com/shirou/gopsutil/internal/common"
  5. func perCPUTimes() ([]TimesStat, error) {
  6. return []TimesStat{}, common.ErrNotImplementedError
  7. }
  8. func allCPUTimes() ([]TimesStat, error) {
  9. return []TimesStat{}, common.ErrNotImplementedError
  10. }