proc: refactor Continue to work on any Process implementation

This commit is contained in:
aarzilli
2017-02-22 09:35:21 +01:00
committed by Derek Parker
parent 510b7db2a7
commit 3dacc25d2e
11 changed files with 326 additions and 284 deletions

View File

@ -107,7 +107,7 @@ func (dbp *Process) writeSoftwareBreakpoint(thread *Thread, addr uint64) error {
return err
}
func (bp *Breakpoint) checkCondition(thread *Thread) (bool, error) {
func (bp *Breakpoint) checkCondition(thread IThread) (bool, error) {
if bp.Cond == nil {
return true, nil
}