Skip to content

Commit

Permalink
Improve code documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
derekparker committed Jul 28, 2015
1 parent 15b7c6e commit 77604ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
11 changes: 5 additions & 6 deletions proc/doc.go
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
1 change: 1 addition & 0 deletions proc/proc_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import (
"github.com/derekparker/delve/dwarf/line"
)

// Process statuses
const (
STATUS_SLEEPING = 'S'
STATUS_RUNNING = 'R'
Expand Down

0 comments on commit 77604ef

Please sign in to comment.