diff options
author | 2023-11-06 14:44:53 +0000 | |
---|---|---|
committer | 2023-11-06 14:44:53 +0000 | |
commit | 9b76afc851090268316fd8890366957632b49a44 (patch) | |
tree | 4f1539dd8f831bb22bad9ae21d8ab1d17278b323 /vendor/github.com/jackc/puddle/v2/nanotime_unsafe.go | |
parent | [chore]: Bump github.com/tdewolff/minify/v2 from 2.20.0 to 2.20.6 (#2337) (diff) | |
download | gotosocial-9b76afc851090268316fd8890366957632b49a44.tar.xz |
[chore]: Bump github.com/jackc/pgx/v5 from 5.4.3 to 5.5.0 (#2336)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'vendor/github.com/jackc/puddle/v2/nanotime_unsafe.go')
-rw-r--r-- | vendor/github.com/jackc/puddle/v2/nanotime_unsafe.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/github.com/jackc/puddle/v2/nanotime_unsafe.go b/vendor/github.com/jackc/puddle/v2/nanotime_unsafe.go new file mode 100644 index 000000000..fc3b8a258 --- /dev/null +++ b/vendor/github.com/jackc/puddle/v2/nanotime_unsafe.go @@ -0,0 +1,12 @@ +//go:build !purego && !appengine && !js + +// This file contains the implementation of nanotime using runtime.nanotime. + +package puddle + +import "unsafe" + +var _ = unsafe.Sizeof(0) + +//go:linkname nanotime runtime.nanotime +func nanotime() int64 |