720 if self.passive: |
720 if self.passive: |
721 self.progTerminated(42) |
721 self.progTerminated(42) |
722 else: |
722 else: |
723 self.set_quit() |
723 self.set_quit() |
724 self.eventExit = True |
724 self.eventExit = True |
|
725 |
|
726 elif method == "RequestMoveIP": |
|
727 newLine = params["newLine"] |
|
728 self.currentThreadExec.move_instruction_pointer(newLine) |
725 |
729 |
726 elif method == "RequestContinue": |
730 elif method == "RequestContinue": |
727 self.currentThreadExec.go(params["special"]) |
731 self.currentThreadExec.go(params["special"]) |
728 self.eventExit = True |
732 self.eventExit = True |
729 |
733 |