Add event time for timers and phased loops
This is the beginning of the framework needed to measure timing reports.
This fills in the last event times needed. Watchers and Fetchers
already have the times well covered.
Change-Id: I31ce8814cee3607a4e615b0359f1408ced1258bc
diff --git a/aos/events/event_loop.h b/aos/events/event_loop.h
index a83cfb1..3c47d1a 100644
--- a/aos/events/event_loop.h
+++ b/aos/events/event_loop.h
@@ -338,12 +338,12 @@
// Validates that channel exists inside configuration_.
void ValidateChannel(const Channel *channel);
- private:
- ::std::atomic<bool> is_running_{false};
-
// Context available for watchers.
Context context_;
+ private:
+ ::std::atomic<bool> is_running_{false};
+
const Configuration *configuration_;
};