Save current event id
[babeltrace.git] / include / babeltrace / ctf-ir / metadata.h
index 14c788c6d704a3c5a1aedccc78f96d3b408f4820..b8835ec2d8b17bc29f99f35e48e17c3a6c9a2323 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 event_id;                      /* Current event ID */
        int has_timestamp;
        uint64_t stream_id;
 
@@ -79,7 +80,6 @@ struct ctf_trace {
        GPtrArray *streams;                     /* Array of struct ctf_stream_class pointers */
        struct ctf_stream *metadata;
 
-       /* Declarations only used when parsing */
        struct declaration_struct *packet_header_decl;
 
        uint64_t major;
@@ -127,7 +127,6 @@ struct ctf_stream_class {
        GPtrArray *events_by_id;                /* Array of struct ctf_event pointers indexed by id */
        GHashTable *event_quark_to_id;          /* GQuark to numeric id */
 
-       /* Declarations only used when parsing */
        struct declaration_struct *packet_context_decl;
        struct declaration_struct *event_header_decl;
        struct declaration_struct *event_context_decl;
@@ -161,7 +160,6 @@ struct ctf_event {
        /* parent is lexical scope conaining the event scope */
        struct declaration_scope *declaration_scope;
 
-       /* Declarations only used when parsing */
        struct declaration_struct *context_decl;
        struct declaration_struct *fields_decl;
 
This page took 0.024347 seconds and 4 git commands to generate.