rotate timer working
[lttng-tools.git] / src / bin / lttng-sessiond / session.h
index 25f0927f7c0879e42a2b8e14d8c196fd715e5854..640cc57ec7555798b2a2ebb5433c8ea92fe5d90e 100644 (file)
@@ -137,6 +137,7 @@ struct ltt_session {
        uint64_t rotate_count;
        bool rotate_pending;
        bool rotate_pending_relay;
+       bool rotate_pending_relay_check_in_progress;
        enum lttng_rotate_status rotate_status;
        /*
         * Number of channels waiting for a rotate.
@@ -161,6 +162,17 @@ struct ltt_session {
        time_t current_chunk_start_ts;
        time_t session_last_stop_ts;
        time_t last_begin_rotation_ts;
+       /*
+        * Timer to check periodically if a relay has completed the last
+        * rotation.
+        */
+       bool rotate_relay_pending_timer_enabled;
+       timer_t rotate_relay_pending_timer;
+       /* Timer to periodically rotate a session. */
+       bool rotate_timer_enabled;
+       timer_t rotate_timer;
+       uint64_t rotate_timer_period;
+       uint64_t rotate_size;
 };
 
 /* Prototypes */
This page took 0.024585 seconds and 5 git commands to generate.