(dlv) goroutines
Command failed: error derefing *G EOF
diff --git a/pkg/proc/proc.go b/pkg/proc/proc.go
index 3e88943..14fab21 100644
--- a/pkg/proc/proc.go
+++ b/pkg/proc/proc.go
@@ -497,7 +497,9 @@ func GoroutinesInfo(dbp Process) ([]*G, error) {
}
g, err := gvar.parseG()
if err != nil {
- return nil, err
+ fmt.Println("bad g:", err)
+ continue
+ //return nil, err
}
if thg, allocated := threadg[g.ID]; allocated {
loc, err := thg.Thread.Location()