cpu_other.go 154 B

12345678
  1. // +build !linux
  2. package internal
  3. // RefreshCpu returns cpu usage, always returns 0 on systems other than linux.
  4. func RefreshCpu() uint64 {
  5. return 0
  6. }