mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
11 lines
159 B
Go
11 lines
159 B
Go
//go:build go1.5
|
|
// +build go1.5
|
|
|
|
package metrics
|
|
|
|
import "runtime"
|
|
|
|
func gcCPUFraction(memStats *runtime.MemStats) float64 {
|
|
return memStats.GCCPUFraction
|
|
}
|