mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-06 05:17:49 +00:00
10 lines
142 B
Go
10 lines
142 B
Go
|
// +build go1.5
|
||
|
|
||
|
package metrics
|
||
|
|
||
|
import "runtime"
|
||
|
|
||
|
func gcCPUFraction(memStats *runtime.MemStats) float64 {
|
||
|
return memStats.GCCPUFraction
|
||
|
}
|