mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
10 lines
158 B
Go
10 lines
158 B
Go
//go:build cgo && !appengine && !js
|
|
// +build cgo,!appengine,!js
|
|
|
|
package metrics
|
|
|
|
import "runtime"
|
|
|
|
func numCgoCall() int64 {
|
|
return runtime.NumCgoCall()
|
|
}
|