1
0
Fork 0
forked from forks/go-ethereum
go-ethereum-modded-tocallarg/vendor/github.com/ethereum/go-ethereum/metrics/runtime_gccpufraction.go
2019-06-03 12:28:18 +02:00

9 lines
142 B
Go

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