Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 98e279fb authored by Florent Bouchez Tichadou's avatar Florent Bouchez Tichadou
Browse files

Merge branch 'dev/noe/infinite_loop' into 'devel'

Fixed update_state

See merge request !85
parents a0632c93 8e0f602d
No related branches found
No related tags found
2 merge requests!131Testing merge against main, to verify CI,!85Fixed update_state
......@@ -213,7 +213,8 @@ class AbstractLevel(ABC, TrackerHelp):
def update_state(self) -> None:
"""Run events for updated variables"""
if not self.inferior_started:
if (not self.inferior_started
or self.tracker._pause_reason.type == PauseReasonType.SIGNAL and 'SIGINT' in self.tracker._pause_reason.args):
return
try:
memory = self.tracker.get_program_memory(as_raw_python_objects=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment