1
0
mirror of https://github.com/rancher/os.git synced 2025-09-05 08:42:38 +00:00
Files
os/vendor/github.com/rcrowley/go-metrics/runtime_gccpufraction.go
Darren Shepherd a14846152b Update vendor
2016-05-31 18:14:32 -07:00

10 lines
142 B
Go

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