2015-06-12 19:49:23 +00:00
|
|
|
// proc is a low-level package that provides methods to manipulate
|
2015-04-22 13:18:25 +00:00
|
|
|
// 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
|
2015-04-22 13:18:25 +00:00
|
|
|
// 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
|