закешированный к нам в целях безопасности дебаггер
Go to file
Alessandro Arzilli 2d6bc19ad7
service/api: do not try to convert unreadable goroutines (#2070)
When reading truncated core files GoroutinesInfo will sometimes produce
some proc.G structs with only the Unreadable field set. These proc.G
can not be used for anything, but the service layer will still try to
convert them.
Since they are not fully initialized parts of the conversion will fail,
api.ConvertGoroutine should not try to call methods of unreadable
goroutines.

Fixes a bug reported on the mailing list.
https://groups.google.com/forum/#!msg/delve-dev/gauDqYaD81c/K5YDNBOhAAAJ
2020-06-03 11:10:14 -07:00
_fixtures cmd/dlv: do not ignore regex when tracing pid (#2069) 2020-06-02 12:07:03 -07:00
_scripts Makefile: reduce test timeout when TRAVIS==true 2020-04-17 09:20:55 -07:00
assets Add high-res images 2015-05-19 12:25:26 -05:00
cmd/dlv cmd/dlv: do not ignore regex when tracing pid (#2069) 2020-06-02 12:07:03 -07:00
Documentation cmd/dlv: Fix trace output (#2038) 2020-05-13 08:38:10 +02:00
pkg terminal: fix nil pointer dereference when printing tracepoints (#2071) 2020-06-03 10:54:07 -07:00
service service/api: do not try to convert unreadable goroutines (#2070) 2020-06-03 11:10:14 -07:00
vendor vendor: remove github.com/pkg/profile dependency (#2053) 2020-05-14 10:16:09 -07:00
.cirrus.yml *: Update freebsd image 2020-04-08 11:40:24 +02:00
.deepsource.toml *: mv scripts _scripts 2020-03-28 20:28:51 +01:00
.gitattributes makefile: use git's $Id$ instead of setting ver.Build in makefile (#807) 2017-04-28 10:14:33 -07:00
.gitignore vendor: check vendor directory (#1962) 2020-03-26 09:25:50 -07:00
.travis.yml service/debugger: Fix checking for CI 2020-04-14 21:02:38 +02:00
CHANGELOG.md *: v1.4.1 (#2059) 2020-05-22 20:09:01 +02:00
CONTRIBUTING.md README: Remove gitter chat link. 2020-01-21 09:06:53 -08:00
go.mod vendor: remove github.com/pkg/profile dependency (#2053) 2020-05-14 10:16:09 -07:00
go.sum vendor: remove github.com/pkg/profile dependency (#2053) 2020-05-14 10:16:09 -07:00
ISSUE_TEMPLATE.md misc: Include issue template for GitHub 2016-03-03 10:40:14 -08:00
LICENSE Add License and README 2014-05-03 15:31:52 -05:00
Makefile *: mv scripts _scripts 2020-03-28 20:28:51 +01:00
README.md doc/readme: Remove the Build Status of appveyor (#2055) 2020-05-18 09:36:42 -07:00

Delve

license GoDoc Build Status

The GitHub issue tracker is for bugs only. Please use the developer mailing list for any feature proposals and discussions.

About Delve

Delve is a debugger for the Go programming language. The goal of the project is to provide a simple, full featured debugging tool for Go. Delve should be easy to invoke and easy to use. Chances are if you're using a debugger, things aren't going your way. With that in mind, Delve should stay out of your way as much as possible.