Move top-level packages into pkg

This commit is contained in:
Derek Parker
2017-02-08 08:00:44 -08:00
parent 26ad5f1d82
commit 53f0d24057
83 changed files with 53 additions and 52 deletions

9
pkg/proc/doc.go Normal file
View File

@ -0,0 +1,9 @@
// Package proc is a low-level package that provides methods to manipulate
// 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