github.com/ethw3/go-ethereuma@v0.0.0-20221013053120-c14602a4c23c/metrics/runtime_no_gccpufraction.go (about)

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