We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29330c1 commit 5a68eb9Copy full SHA for 5a68eb9
src/runtime/proc.go
@@ -336,7 +336,6 @@ func allgadd(gp *g) {
336
337
lock(&allglock)
338
allgs = append(allgs, gp)
339
- allg = &allgs[0]
340
allglen = uintptr(len(allgs))
341
unlock(&allglock)
342
}
src/runtime/runtime2.go
@@ -612,16 +612,12 @@ const (
612
613
var (
614
emptystring string
615
- allg **g
616
allglen uintptr
617
- lastg *g
618
allm *m
619
allp [_MaxGomaxprocs + 1]*p
620
gomaxprocs int32
621
panicking uint32
622
- goos *int8
623
ncpu int32
624
- signote note
625
forcegc forcegcstate
626
sched schedt
627
newprocs int32
0 commit comments