cpu_fallback.go 586 B

12345678910111213141516171819202122232425
  1. // +build !darwin,!linux,!freebsd,!openbsd,!solaris,!windows
  2. package cpu
  3. import (
  4. "context"
  5. "github.com/shirou/gopsutil/internal/common"
  6. )
  7. func Times(percpu bool) ([]TimesStat, error) {
  8. return TimesWithContext(context.Background(), percpu)
  9. }
  10. func TimesWithContext(ctx context.Context, percpu bool) ([]TimesStat, error) {
  11. return []TimesStat{}, common.ErrNotImplementedError
  12. }
  13. func Info() ([]InfoStat, error) {
  14. return InfoWithContext(context.Background())
  15. }
  16. func InfoWithContext(ctx context.Context) ([]InfoStat, error) {
  17. return []InfoStat{}, common.ErrNotImplementedError
  18. }