aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime2.go
diff options
context:
space:
mode:
authorAustin Clements <austin@google.com>2023-08-07 18:11:39 -0400
committerGopher Robot <gobot@golang.org>2023-08-07 22:27:53 +0000
commit26e0660811d477dcb30f1abcf71ed9db7a9c4472 (patch)
tree1444b09056de9661906405e3f4c52128340232e5 /src/runtime/runtime2.go
parent5f674f64e4e3f79adf45d301bcbc16a8a3a82b1d (diff)
downloadgo-26e0660811d477dcb30f1abcf71ed9db7a9c4472.tar.xz
Revert "runtime: move pcvalue cache to M"
This reverts CL 515276. This broke the longtest builders. For example: https://build.golang.org/log/351a1a198a6b843b1881c1fb6cdef51f3e413e8b Change-Id: Ie79067464fe8e226da31721cf127f3efb6011452 Reviewed-on: https://go-review.googlesource.com/c/go/+/516856 Auto-Submit: Austin Clements <austin@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Austin Clements <austin@google.com> Reviewed-by: Matthew Dempsky <mdempsky@google.com> Reviewed-by: Michael Knyszek <mknyszek@google.com>
Diffstat (limited to 'src/runtime/runtime2.go')
-rw-r--r--src/runtime/runtime2.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/runtime/runtime2.go b/src/runtime/runtime2.go
index e7db4dcdd7..54fab050ea 100644
--- a/src/runtime/runtime2.go
+++ b/src/runtime/runtime2.go
@@ -611,9 +611,6 @@ type m struct {
// Whether this is a pending preemption signal on this M.
signalPending atomic.Uint32
- // pcvalue lookup cache
- pcvalueCache pcvalueCache
-
dlogPerM
mOS