File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ const (
87
87
// ready()ing this G.
88
88
_Gpreempted // 9
89
89
90
- // _Gleaked represents a deadlocked goroutine caught by the GC.
90
+ // _Gleaked represents a leaked goroutine caught by the GC.
91
91
_Gleaked // 10
92
92
93
93
// _Gscan combined with one of the above states other than
@@ -108,7 +108,7 @@ const (
108
108
_Gscanwaiting = _Gscan + _Gwaiting // 0x1004
109
109
_Gscanpreempted = _Gscan + _Gpreempted // 0x1009
110
110
111
- _Gscandeadlocked = _Gscan + _Gleaked // 0x100a
111
+ _Gscanleaked = _Gscan + _Gleaked // 0x100a
112
112
)
113
113
114
114
const (
Original file line number Diff line number Diff line change @@ -1206,7 +1206,7 @@ var gStatusStrings = [...]string{
1206
1206
_Gwaiting : "waiting" ,
1207
1207
_Gdead : "dead" ,
1208
1208
_Gcopystack : "copystack" ,
1209
- _Gleaked : "deadlocked " ,
1209
+ _Gleaked : "leaked " ,
1210
1210
_Gpreempted : "preempted" ,
1211
1211
}
1212
1212
You can’t perform that action at this time.
0 commit comments