-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
15b7c6e
commit 77604ef
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
// 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. | ||
// | ||
// 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. | ||
// | ||
// proc implements all core functionality including: | ||
// * creating / attaching to a process | ||
// * process manipulation (step, next, continue, halt) | ||
// * methods to explore the memory of the process | ||
// | ||
package proc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters