2
0
mirror of https://github.com/status-im/op-geth.git synced 2025-02-13 07:16:38 +00:00
op-geth/metrics/runtime_no_gccpufraction.go

10 lines
122 B
Go
Raw Normal View History

// +build !go1.5
package metrics
import "runtime"
func gcCPUFraction(memStats *runtime.MemStats) float64 {
return 0
}