mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-06 03:15:03 +00:00
10 lines
159 B
Go
10 lines
159 B
Go
//go:build go1.5
|
|
// +build go1.5
|
|
|
|
package metrics
|
|
|
|
import "runtime"
|
|
|
|
func gcCPUFraction(memStats *runtime.MemStats) float64 {
|
|
return memStats.GCCPUFraction
|
|
}
|