diff --git a/core/src/main/resources/lib/c/reactor-c b/core/src/main/resources/lib/c/reactor-c index 12ba4ee56a..165f3fe107 160000 --- a/core/src/main/resources/lib/c/reactor-c +++ b/core/src/main/resources/lib/c/reactor-c @@ -1 +1 @@ -Subproject commit 12ba4ee56a70fc87b7e7b0a53dd5f9a425a9dc00 +Subproject commit 165f3fe1077eb98f3a888a70d61a710bfac59778 diff --git a/test/C/src/multiport/BankOfActionsIsPresentSetup.lf b/test/C/src/multiport/BankOfActionsIsPresentSetup.lf index 5348ebaded..fe2ce8e4bc 100644 --- a/test/C/src/multiport/BankOfActionsIsPresentSetup.lf +++ b/test/C/src/multiport/BankOfActionsIsPresentSetup.lf @@ -5,6 +5,19 @@ target C reactor R1 { logical action a1 logical action a2 + + reaction(startup) -> a1, a2 {= + lf_schedule(a1, MSEC(10)); + lf_schedule(a2, MSEC(10)); + =} + + reaction(a1) {= + lf_print("a1"); + =} + + reaction(a2) {= + lf_print("a2"); + =} } reactor R2 {