aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime.go
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2024-04-19 13:46:16 -0400
committerGopher Robot <gobot@golang.org>2024-04-22 20:09:01 +0000
commit1f4bcee2cd064fdb5b02f36b4e96c1dc3aac48c9 (patch)
treec300713bf028bcc870a24f78dbcf7cb7b9b057b7 /src/runtime/runtime.go
parent9f9dd2bfd8a09083b21767d13df38ff67d7236d8 (diff)
downloadgo-1f4bcee2cd064fdb5b02f36b4e96c1dc3aac48c9.tar.gz
go-1f4bcee2cd064fdb5b02f36b4e96c1dc3aac48c9.zip
runtime: move zeroVal out of map.go
It isn't specific to maps, so put it in a more general location. For #54766. Change-Id: Ia3f3ebe8c347cfa5a8582082a306f4df4e05818d Reviewed-on: https://go-review.googlesource.com/c/go/+/580777 Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to 'src/runtime/runtime.go')
-rw-r--r--src/runtime/runtime.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/runtime/runtime.go b/src/runtime/runtime.go
index cc6f03d2a0..6ec0369a7e 100644
--- a/src/runtime/runtime.go
+++ b/src/runtime/runtime.go
@@ -5,6 +5,7 @@
package runtime
import (
+ "internal/abi"
"internal/runtime/atomic"
"unsafe"
)
@@ -296,3 +297,5 @@ func setCrashFD(fd uintptr) uintptr {
var auxv []uintptr
func getAuxv() []uintptr { return auxv } // accessed from x/sys/cpu; see issue 57336
+
+var zeroVal [abi.ZeroValSize]byte