pkg/proc: Remove unused parameter

Also cleanup some typos.
This commit is contained in:
Derek Parker
2020-03-27 14:30:27 -07:00
committed by Alessandro Arzilli
parent 2786e46c5f
commit 5177c247f6
2 changed files with 4 additions and 4 deletions

View File

@ -74,12 +74,12 @@ const (
StopUnknown StopReason = iota
StopLaunched // The process was just launched
StopAttached // The debugger stopped the process after attaching
StopExited // The target proces terminated
StopExited // The target process terminated
StopBreakpoint // The target process hit one or more software breakpoints
StopHardcodedBreakpoint // The target process hit a hardcoded breakpoint (for example runtime.Breakpoint())
StopManual // A manual stop was requested
StopNextFinished // The next/step/stepout command terminated
StopCallReturned // An injected call commpleted
StopCallReturned // An injected call completed
)
// NewTargetConfig contains the configuration for a new Target object,