aboutsummaryrefslogtreecommitdiff
path: root/src/internal/sysinfo/cpuinfo_stub.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2023-08-17 15:44:20 -0400
committerRuss Cox <rsc@golang.org>2024-03-28 14:40:31 +0000
commited9aed1c9d7dd340006f22b96e1ee4476582b874 (patch)
tree29148dcab5efe70227bc02d6f35efba4c9222ddc /src/internal/sysinfo/cpuinfo_stub.go
parent2e1003e2f7e42efc5771812b9ee6ed264803796c (diff)
downloadgo-ed9aed1c9d7dd340006f22b96e1ee4476582b874.tar.gz
go-ed9aed1c9d7dd340006f22b96e1ee4476582b874.zip
internal/sysinfo: implement CPUName on bsd systems
sysctl machdep.cpu.brand_string seems to be standard across the BSDs. There does not seem to be a standard way to get the CPU frequency. Change-Id: Ic986d6c81dd54e1b84544317f2a53ce16801319b Reviewed-on: https://go-review.googlesource.com/c/go/+/520636 Auto-Submit: Russ Cox <rsc@golang.org> TryBot-Bypass: Russ Cox <rsc@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com> Reviewed-by: Michael Knyszek <mknyszek@google.com>
Diffstat (limited to 'src/internal/sysinfo/cpuinfo_stub.go')
-rw-r--r--src/internal/sysinfo/cpuinfo_stub.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/sysinfo/cpuinfo_stub.go b/src/internal/sysinfo/cpuinfo_stub.go
index 5dcfed1137..273166ee61 100644
--- a/src/internal/sysinfo/cpuinfo_stub.go
+++ b/src/internal/sysinfo/cpuinfo_stub.go
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-//go:build !linux
+//go:build !(darwin || freebsd || linux || netbsd || openbsd)
package sysinfo