Skip to content
Snippets Groups Projects
Commit 6fe97fdb authored by erwan's avatar erwan
Browse files

Fix: the src info in the rdbg plugin was wrong at exit events

parent 011560e0
No related branches found
No related tags found
No related merge requests found
(* Time-stamp: <modified the 29/08/2019 (at 16:41) by Erwan Jahier> *) (* Time-stamp: <modified the 10/12/2019 (at 10:20) by Erwan Jahier> *)
open Soc open Soc
open Data open Data
open SocExecValue open SocExecValue
...@@ -588,9 +588,9 @@ and (do_soc_step : Lxm.t -> int option -> step_method -> SocExecValue.ctx -> ...@@ -588,9 +588,9 @@ and (do_soc_step : Lxm.t -> int option -> step_method -> SocExecValue.ctx ->
Event.kind = Event.Exit; Event.kind = Event.Exit;
Event.lang = "lustre"; Event.lang = "lustre";
Event.name = step_name; Event.name = step_name;
Event.inputs = nectx.Event.inputs; Event.inputs = fst soc.profile;
Event.outputs = nectx.Event.outputs; Event.outputs = snd soc.profile;
Event.locals = nectx.Event.locals; Event.locals = locals;
Event.sinfo = sinfo; Event.sinfo = sinfo;
Event.data = datal; Event.data = datal;
Event.next = (fun () -> cont3 nectx val_ctx); Event.next = (fun () -> cont3 nectx val_ctx);
......
No preview for this file type
This diff is collapsed.
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