Cleanup comment in setBreakpoint

This commit is contained in:
Derek Parker 2015-08-01 21:19:14 -05:00
parent 1f473241c7
commit 5e5f5aff30

@ -124,7 +124,7 @@ func (dbp *Process) setBreakpoint(tid int, addr uint64, temp bool) (*Breakpoint,
return dbp.Breakpoints[addr], nil
}
// Fall back to software breakpoint. 0xCC is INT 3 trap interrupt.
// Fall back to software breakpoint.
thread := dbp.Threads[tid]
originalData := make([]byte, dbp.arch.BreakpointSize())
if _, err := readMemory(thread, uintptr(addr), originalData); err != nil {