diff options
author | Josh Bleecher Snyder <josharian@gmail.com> | 2016-06-28 09:22:46 -0700 |
---|---|---|
committer | Josh Bleecher Snyder <josharian@gmail.com> | 2016-08-30 23:59:21 +0000 |
commit | 2b74de3ed91c495d63868acef0471b0286e7b432 (patch) | |
tree | 89478aa9441c37a24a5ca15c9750eefbff80bbfe /src/runtime/os_plan9_arm.go | |
parent | f9dafc742d7c0e892b6e4ff17cb9ec7165887e44 (diff) | |
download | go-git-2b74de3ed91c495d63868acef0471b0286e7b432.tar.gz |
runtime: rename fastrand1 to fastrand
Change-Id: I37706ff0a3486827c5b072c95ad890ea87ede847
Reviewed-on: https://go-review.googlesource.com/28210
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/os_plan9_arm.go')
-rw-r--r-- | src/runtime/os_plan9_arm.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/os_plan9_arm.go b/src/runtime/os_plan9_arm.go index 30cde8f74b..fdce1e7a35 100644 --- a/src/runtime/os_plan9_arm.go +++ b/src/runtime/os_plan9_arm.go @@ -10,8 +10,8 @@ func checkgoarm() { //go:nosplit func cputicks() int64 { - // Currently cputicks() is used in blocking profiler and to seed runtime·fastrand1(). + // Currently cputicks() is used in blocking profiler and to seed runtime·fastrand(). // runtime·nanotime() is a poor approximation of CPU ticks that is enough for the profiler. - // TODO: need more entropy to better seed fastrand1. + // TODO: need more entropy to better seed fastrand. return nanotime() } |