summaryrefslogtreecommitdiff
path: root/vendor/github.com/jackc/puddle/v2/nanotime.go
blob: 8a5351a0df2541142ad10821742e795d23797017 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package puddle

import "time"

// nanotime returns the time in nanoseconds since process start.
//
// This approach, described at
// https://github.com/golang/go/issues/61765#issuecomment-1672090302,
// is fast, monotonic, and portable, and avoids the previous
// dependence on runtime.nanotime using the (unsafe) linkname hack.
// In particular, time.Since does less work than time.Now.
func nanotime() int64 {
	return time.Since(globalStart).Nanoseconds()
}

var globalStart = time.Now()