Files
go-zero/core/stat/internal/cpu_other.go
2023-03-10 17:36:39 +08:00

9 lines
155 B
Go

//go:build !linux
package internal
// RefreshCpu returns cpu usage, always returns 0 on systems other than linux.
func RefreshCpu() uint64 {
return 0
}