mirror of
https://github.com/golang/go
synced 2024-11-19 13:14:42 -07:00
99da8730b0
Went mainly for the ones that make no sense, such as the ones mid-sentence or after commas. Change-Id: Ie245d2c19cc7428a06295635cf6a9482ade25ff0 Reviewed-on: https://go-review.googlesource.com/57293 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Daniel Martí <mvdan@mvdan.cc> TryBot-Result: Gobot Gobot <gobot@golang.org>
17 lines
462 B
Go
17 lines
462 B
Go
// Copyright 2014 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build !arm
|
|
// +build !arm64
|
|
// +build !mips64
|
|
// +build !mips64le
|
|
// +build !mips
|
|
// +build !mipsle
|
|
|
|
package runtime
|
|
|
|
// careful: cputicks is not guaranteed to be monotonic! In particular, we have
|
|
// noticed drift between cpus on certain os/arch combinations. See issue 8976.
|
|
func cputicks() int64
|