mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 15:48:07 -05: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
|
|
}
|