Skip to content

Commit

Permalink
ci fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tanneberger committed Sep 11, 2024
1 parent aebf322 commit 1647635
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/reactor-uc/timer.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ struct Timer {
Trigger super;
instant_t offset;
interval_t period;
} __attribute__((aligned(32)));
}; // __attribute__((aligned(32)));

void Timer_ctor(Timer *self, Reactor *parent, instant_t offset, interval_t period, Reaction **effects,
size_t effects_size);
Expand Down
6 changes: 3 additions & 3 deletions include/reactor-uc/trigger.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ struct Trigger {
void (*register_source)(Trigger *, Reaction *);

// member variables
TriggerType type;
Reactor *parent;

// reactions that will be activated by this trigger
Expand All @@ -31,9 +30,10 @@ struct Trigger {
size_t sources_size;
size_t sources_registered;
Trigger_update_value update_value;
bool is_present;

} __attribute__((aligned(32)));
TriggerType type;
bool is_present;
}; //__attribute__((aligned(32)));

void Trigger_ctor(Trigger *self, TriggerType type, Reactor *parent, Reaction **effects, size_t effects_size,
Reaction **sources, size_t sources_size, Trigger_update_value update_value_func);
Expand Down

0 comments on commit 1647635

Please sign in to comment.