Gitiles
Code Review
Sign In
gerrit.opencord.org
/
voltha-openolt-adapter
/
495b94a5d760d45e65578f3800ae0fa12b50e29d
/
.
/
vendor
/
github.com
/
rcrowley
/
go-metrics
/
runtime_gccpufraction.go
blob: ca12c05bac740b87c9963d6b4487b78959c4e6a0 [
file
] [
log
] [
blame
]
William Kurkian
ea86948
2019-04-09 15:16:11 -0400
[
diff
] [
blame
]
1
// +build go1.5
2
3
package metrics
4
5
import "runtime"
6
7
func gcCPUFraction(memStats *runtime.MemStats) float64 {
8
return memStats.GCCPUFraction
9
}