delve/service/rpc1
Sergio Lopez 11accd4d71 proc/proc: Extend GoroutinesInfo to allow specifying a range
Instead of unconditionally returning all present goroutines,
GoroutinesInfo now allows specifying a range (start and count). In
addition to the array of goroutines and the error, it now also returns
the next goroutine to be processed, to be used as 'start' argument on
the next call, or 0 if all present goroutines have already been
processed.

This way clients can avoid eating large amounts of RAM while debugging
core dumps and processes with a exceptionally high amount of goroutines.

Fixes #1403
2018-11-19 10:06:38 -08:00
..
client.go *: function call injection for go 1.11 2018-07-13 13:37:54 -07:00
readme.txtr service,terminal: APIv2 plus method to select API version (#460) 2016-04-18 12:20:20 -07:00
server.go proc/proc: Extend GoroutinesInfo to allow specifying a range 2018-11-19 10:06:38 -08:00

This package implements version 1 of Delve's API and is only
kept here for backwards compatibility. Client.go is the old
client code used by Delve's frontend (delve/cmd/dlv), it is
only preserved here for the backwards compatibility tests in
service/test/integration1_test.go.