mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 21:28:22 +08: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()
|
|
}
|