github.com/hardtosaygoodbye/go-ethereum@v1.10.16-0.20220122011429-97003b9e6c15/metrics/runtime_cgo.go (about) 1 //go:build cgo && !appengine && !js 2 // +build cgo,!appengine,!js 3 4 package metrics 5 6 import "runtime" 7 8 func numCgoCall() int64 { 9 return runtime.NumCgoCall() 10 }