github.com/taubyte/vm-wasm-utils@v1.0.2/platform/time_cgo.go (about) 1 //go:build cgo 2 3 package platform 4 5 import _ "unsafe" // for go:linkname 6 7 // nanotime uses runtime.nanotime as it is available on all platforms and 8 // benchmarks faster than using time.Since. 9 // 10 //go:noescape 11 //go:linkname nanotime runtime.nanotime 12 func nanotime() int64