diff options
Diffstat (limited to 'src/runtime/proc1.go')
| -rw-r--r-- | src/runtime/proc1.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/proc1.go b/src/runtime/proc1.go index 70addbffad..1f3ae500fc 100644 --- a/src/runtime/proc1.go +++ b/src/runtime/proc1.go @@ -2636,7 +2636,7 @@ func checkdead() { lock(&allglock) for i := 0; i < len(allgs); i++ { gp := allgs[i] - if gp.issystem { + if isSystemGoroutine(gp) { continue } s := readgstatus(gp) |
