runtime_no_gccpufraction.go 122 B

123456789
  1. // +build !go1.5
  2. package metrics
  3. import "runtime"
  4. func gcCPUFraction(memStats *runtime.MemStats) float64 {
  5. return 0
  6. }