mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 21:17:16 +00:00
11 lines
128 B
Go
11 lines
128 B
Go
|
// +build cgo
|
||
|
// +build !appengine
|
||
|
|
||
|
package metrics
|
||
|
|
||
|
import "runtime"
|
||
|
|
||
|
func numCgoCall() int64 {
|
||
|
return runtime.NumCgoCall()
|
||
|
}
|