Skip to content

Commit

Permalink
Better logical ordering of the reactions in transients tests + align …
Browse files Browse the repository at this point in the history
…reactor-c
  • Loading branch information
ChadliaJerad committed Dec 11, 2024
1 parent 918df6e commit 848beba
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion core/src/main/resources/lib/c/reactor-c
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,14 @@ reactor Down {
self->count_timer++;
=}

reaction(in) {=
self->count_in_mid_reactions++;
=}

reaction(join) {=
self->count_join++;
=}

reaction(in) {=
self->count_in_mid_reactions++;
=}

reaction(shutdown) {=
// Check that the TAG has been successfully issued to Down
if (self->count_timer < 5) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ reactor Down {
self->count_timer++;
=}

reaction(join) {=
self->count_join++;
=}

reaction(in_mid) {=
self->count_in_mid_reactions++;
=}
Expand All @@ -77,10 +81,6 @@ reactor Down {
self->count_in_up_reactions++;
=}

reaction(join) {=
self->count_join++;
=}

reaction(shutdown) {=
// Check that the TAG have been successfully issued to Down
if (self->count_timer < 5) {
Expand Down

0 comments on commit 848beba

Please sign in to comment.