From ef7724c4324f6bac40463a12e4fea43ff0b4a8e8 Mon Sep 17 00:00:00 2001 From: Damien Neil Date: Thu, 1 May 2025 13:24:50 -0400 Subject: runtime: use "bubble" terminology for synctest We've settled on calling the group of goroutines started by synctest.Run a "bubble". At the time the runtime implementation was written, I was still calling this a "group". Update the code to match the current terminology. Change-Id: I31b757f31d804b5d5f9564c182627030a9532f4a Reviewed-on: https://go-review.googlesource.com/c/go/+/670135 Reviewed-by: Michael Pratt Auto-Submit: Damien Neil LUCI-TryBot-Result: Go LUCI --- src/runtime/traceback.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/runtime/traceback.go') diff --git a/src/runtime/traceback.go b/src/runtime/traceback.go index 1390e8b1bd..d6aa022674 100644 --- a/src/runtime/traceback.go +++ b/src/runtime/traceback.go @@ -1254,8 +1254,8 @@ func goroutineheader(gp *g) { if gp.lockedm != 0 { print(", locked to thread") } - if sg := gp.syncGroup; sg != nil { - print(", synctest group ", sg.root.goid) + if bubble := gp.bubble; bubble != nil { + print(", synctest bubble ", bubble.root.goid) } print("]:\n") } -- cgit v1.3-5-g9baa