mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2024-12-23 11:57:17 +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
|
||
|
}
|