mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
10 lines
122 B
Go
10 lines
122 B
Go
// +build !go1.5
|
|
|
|
package metrics
|
|
|
|
import "runtime"
|
|
|
|
func gcCPUFraction(memStats *runtime.MemStats) float64 {
|
|
return 0
|
|
}
|