Files
go-zero/core/stat/internal/cpu_other.go

10 lines
172 B
Go
Raw Normal View History

2021-09-15 13:31:20 +08:00
//go:build !linux
2020-07-26 17:09:05 +08:00
// +build !linux
package internal
2021-02-28 16:16:22 +08:00
// RefreshCpu returns cpu usage, always returns 0 on systems other than linux.
2020-07-26 17:09:05 +08:00
func RefreshCpu() uint64 {
return 0
}