Print time range during which events have been dropped
[babeltrace.git] / include / babeltrace / ctf-ir / metadata.h
index 773ebd681358b01196385460242311323eeecd92..ce5f8b9e477d7053d77aad852c02dc392d0f4b44 100644 (file)
@@ -36,6 +36,7 @@ struct ctf_event;
 struct ctf_stream {
        struct ctf_stream_class *stream_class;
        uint64_t timestamp;                     /* Current timestamp, in ns */
+       uint64_t prev_timestamp;
        uint64_t event_id;                      /* Current event ID */
        int has_timestamp;
        uint64_t stream_id;
@@ -47,6 +48,10 @@ struct ctf_stream {
        GPtrArray *events_by_id;                /* Array of struct ctf_stream_event pointers indexed by id */
        struct definition_scope *parent_def_scope;      /* for initialization */
        int stream_definitions_created;
+
+       /* Event discarded information */
+       uint32_t events_discarded;
+       
 };
 
 struct ctf_stream_event {
This page took 0.022413 seconds and 4 git commands to generate.