summaryrefslogtreecommitdiff
path: root/vendor/github.com/tetratelabs/wazero/internal/platform/time_cgo.go
blob: ff01d90cea7b250cb38e616fcbe3d1a25ad4762f (plain)
1
2
3
4
5
6
7
8
9
10
11
//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:linkname nanotime runtime.nanotime
func nanotime() int64