1
0
Fork 0
forked from forks/go-ethereum
go-ethereum-modded-tocallarg/metrics/runtime_no_gccpufraction.go
Felix Lange 8a134014b4
all: add go:build lines (#23468)
Generated by go1.17 fmt ./...
2021-08-25 18:46:29 +02:00

10 lines
140 B
Go

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