mirror of https://github.com/golang/go.git
runtime: remove unused g.readyg field
Commit 0e6a6c5 removed readyExecute a long time ago, but left behind
the g.readyg field that was used by readyExecute. Remove this now
unused field.
Change-Id: I41b87ad2b427974d256ec7a7f6d4bdc2ce8a13bb
Reviewed-on: https://go-review.googlesource.com/13111
Reviewed-by: Rick Hudson <rlh@golang.org>
This commit is contained in:
parent
70462f90ec
commit
a1cad70a2f
|
|
@ -257,7 +257,6 @@ type g struct {
|
||||||
startpc uintptr // pc of goroutine function
|
startpc uintptr // pc of goroutine function
|
||||||
racectx uintptr
|
racectx uintptr
|
||||||
waiting *sudog // sudog structures this g is waiting on (that have a valid elem ptr)
|
waiting *sudog // sudog structures this g is waiting on (that have a valid elem ptr)
|
||||||
readyg *g // scratch for readyExecute
|
|
||||||
|
|
||||||
// Per-G gcController state
|
// Per-G gcController state
|
||||||
gcalloc uintptr // bytes allocated during this GC cycle
|
gcalloc uintptr // bytes allocated during this GC cycle
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue