aboutsummaryrefslogtreecommitdiffstats
path: root/metrics/runtime_cgo.go
blob: e3391f4e89fa1c457ed83e3789bf559214ccbec8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// +build cgo
// +build !appengine

package metrics

import "runtime"

func numCgoCall() int64 {
    return runtime.NumCgoCall()
}