delve/proc/doc.go

11 lines
442 B
Go
Raw Normal View History

2015-06-12 19:49:23 +00:00
// proc is a low-level package that provides methods to manipulate
// the process we are debugging, and methods to read and write from
// the virtual memory of the process.
//
2015-06-12 19:49:23 +00:00
// proc implements the core features of this debugger, including all
// process manipulation (step, next, continue, halt) as well as providing
// methods to evaluate variables and read them from the virtual memory of
// the process we are debugging.
//
2015-06-12 19:49:23 +00:00
package proc