summaryrefslogtreecommitdiff
path: root/src/runtime/os_freebsd_arm.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-11-11 23:00:29 -0500
committerRuss Cox <rsc@golang.org>2014-11-11 23:00:29 -0500
commitef35f8a674d61b2946ba2a3d4340a28b3d8ae96e (patch)
treebdba506721a2804a076a80054d9b852b00eed01c /src/runtime/os_freebsd_arm.go
parentb44834d2002225f283764d5f43651ba83a0d797d (diff)
downloadgo-ef35f8a674d61b2946ba2a3d4340a28b3d8ae96e.tar.gz
[dev.cc] runtime: convert freebsd to Go
It builds. Don't know if it works, but it's a lot closer than having everything in C. LGTM=r R=r CC=golang-codereviews https://codereview.appspot.com/168590043
Diffstat (limited to 'src/runtime/os_freebsd_arm.go')
-rw-r--r--src/runtime/os_freebsd_arm.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/runtime/os_freebsd_arm.go b/src/runtime/os_freebsd_arm.go
new file mode 100644
index 000000000..e049cbf9a
--- /dev/null
+++ b/src/runtime/os_freebsd_arm.go
@@ -0,0 +1,17 @@
+// Copyright 2012 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.
+
+package runtime
+
+func checkgoarm() {
+ // TODO(minux)
+}
+
+//go:nosplit
+func cputicks() int64 {
+ // Currently cputicks() is used in blocking profiler and to seed runtime·fastrand1().
+ // runtime·nanotime() is a poor approximation of CPU ticks that is enough for the profiler.
+ // TODO: need more entropy to better seed fastrand1.
+ return nanotime()
+}