runtime_gccpufraction.go 159 Bytes
Newer Older
1
//go:build go1.5
2 3 4 5 6 7 8 9 10
// +build go1.5

package metrics

import "runtime"

func gcCPUFraction(memStats *runtime.MemStats) float64 {
	return memStats.GCCPUFraction
}