mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-21 02:18:07 +00:00
9 lines
122 B
Go
9 lines
122 B
Go
// +build cgo,!appengine,!js
|
|
|
|
package metrics
|
|
|
|
import "runtime"
|
|
|
|
func numCgoCall() int64 {
|
|
return runtime.NumCgoCall()
|
|
}
|