status-go/vendor/github.com/ethereum/go-ethereum/metrics/runtime_cgo.go

11 lines
158 B
Go
Raw Normal View History

2022-10-25 14:25:08 +00:00
//go:build cgo && !appengine && !js
// +build cgo,!appengine,!js
package metrics
import "runtime"
func numCgoCall() int64 {
return runtime.NumCgoCall()
}