mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-07 23:20:00 +08:00
9 lines
154 B
Go
9 lines
154 B
Go
// +build !linux
|
|
|
|
package internal
|
|
|
|
// RefreshCpu returns cpu usage, always returns 0 on systems other than linux.
|
|
func RefreshCpu() uint64 {
|
|
return 0
|
|
}
|