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

11 lines
128 B
Go

// +build cgo
// +build !appengine
package metrics
import "runtime"
func numCgoCall() int64 {
return runtime.NumCgoCall()
}