Files
wazero/internal/platform/time_cgo.go
2023-02-14 15:28:12 +09:00

13 lines
281 B
Go

//go:build cgo && !windows
package platform
import _ "unsafe" // for go:linkname
// nanotime uses runtime.nanotime as it is available on all platforms and
// benchmarks faster than using time.Since.
//
//go:noescape
//go:linkname nanotime runtime.nanotime
func nanotime() int64