aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/os_freebsd.go
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2019-03-13 18:56:37 -0700
committerIan Lance Taylor <iant@golang.org>2019-03-15 03:37:49 +0000
commit0a7bc8f430e3e4017910780a898a5f20d337895b (patch)
tree05de8f86002d9e9313331d1c917fe88925625b81 /src/runtime/os_freebsd.go
parent829c140f149dba8933dea0cead3a78de4c83b529 (diff)
downloadgo-0a7bc8f430e3e4017910780a898a5f20d337895b.tar.gz
go-0a7bc8f430e3e4017910780a898a5f20d337895b.zip
runtime: introduce and consistently use setNsec for timespec
The general code for setting a timespec value sometimes used set_nsec and sometimes used a combination of set_sec and set_nsec. Standardize on a setNsec function that takes a number of nanoseconds and splits them up to set the tv_sec and tv_nsec fields. Consistently mark setNsec as go:nosplit, since it has to be that way on some systems including Darwin and GNU/Linux. Consistently use timediv on 32-bit systems to help stay within split-stack limits on processors that don't have a 64-bit division instruction. Change-Id: I6396bb7ddbef171a96876bdeaf7a1c585a6d725b Reviewed-on: https://go-review.googlesource.com/c/go/+/167389 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/os_freebsd.go')
-rw-r--r--src/runtime/os_freebsd.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/os_freebsd.go b/src/runtime/os_freebsd.go
index 08f7b0ecf0..ba0afa23bf 100644
--- a/src/runtime/os_freebsd.go
+++ b/src/runtime/os_freebsd.go
@@ -156,7 +156,7 @@ func futexsleep1(addr *uint32, val uint32, ns int64) {
if ns >= 0 {
var ut umtx_time
ut._clockid = _CLOCK_MONOTONIC
- ut._timeout.set_sec(int64(timediv(ns, 1000000000, (*int32)(unsafe.Pointer(&ut._timeout.tv_nsec)))))
+ ut._timeout.setNsec(ns)
utp = &ut
}
ret := sys_umtx_op(addr, _UMTX_OP_WAIT_UINT_PRIVATE, val, unsafe.Sizeof(*utp), utp)