github.com/nitinawathare/ethereumassignment3@v0.0.0-20211021213010-f07344c2b868/go-ethereum/metrics/runtime_cgo.go (about)

     1  // +build cgo
     2  // +build !appengine
     3  
     4  package metrics
     5  
     6  import "runtime"
     7  
     8  func numCgoCall() int64 {
     9  	return runtime.NumCgoCall()
    10  }