1
0
mirror of https://github.com/rancher/os.git synced 2025-07-02 09:41:47 +00:00
os/vendor/github.com/rcrowley/go-metrics/runtime_gccpufraction.go
2016-06-06 08:08:00 -07:00

10 lines
142 B
Go

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