Add "-n trace" option to print trace name
[babeltrace.git] / include / babeltrace / ctf-ir / metadata.h
index 14c788c6d704a3c5a1aedccc78f96d3b408f4820..b9157567ff4bbfca880e5ba2ce8dcdd6169ef1d8 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;
@@ -102,6 +102,7 @@ struct ctf_trace {
 
        /* Heap of streams, ordered to always get the lowest timestam */
        struct ptr_heap *stream_heap;
+       char path[PATH_MAX];
 };
 
 #define CTF_STREAM_SET_FIELD(ctf_stream, field)                                \
@@ -127,7 +128,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 +161,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.023991 seconds and 4 git commands to generate.