go-ethereum/metrics/runtime_cgo.go

11 lines
128 B
Go
Raw Normal View History

2015-06-22 12:00:55 +03:00
// +build cgo
// +build !appengine
package metrics
import "runtime"
func numCgoCall() int64 {
return runtime.NumCgoCall()
}