API Fix: bt_ctf_iter_read_event_flags
[babeltrace.git] / include / babeltrace / ctf / events-internal.h
index 9f579a060ded3cc272e40eeccfab3ef34475e46c..71f73539c9692c6e3d8aabd62557bec57bb0bec1 100644 (file)
 #include <babeltrace/iterator-internal.h>
 #include <babeltrace/ctf/callbacks.h>
 #include <babeltrace/ctf/callbacks-internal.h>
+#include <babeltrace/ctf-ir/metadata.h>
 #include <glib.h>
 
-struct ctf_stream;
-struct ctf_stream_event;
+struct ctf_stream_definition;
+
 /*
- * the structure to manipulate events
+ * These structures are public mappings to internal ctf_event structures.
  */
 struct bt_ctf_event {
-       struct ctf_stream *stream;
-       struct ctf_stream_event *event;
+       struct ctf_event_definition *parent;
+};
+
+struct bt_ctf_event_decl {
+       struct ctf_event_declaration parent;
+       GPtrArray *context_decl;
+       GPtrArray *fields_decl;
+       GPtrArray *packet_header_decl;
+       GPtrArray *event_context_decl;
+       GPtrArray *event_header_decl;
+       GPtrArray *packet_context_decl;
 };
 
 struct bt_ctf_iter {
@@ -58,6 +68,7 @@ struct bt_ctf_iter {
         * bt_iter.
         */
        GPtrArray *dep_gc;
+       uint64_t events_lost;
 };
 
 #endif /*_BABELTRACE_CTF_EVENTS_INTERNAL_H */
This page took 0.022942 seconds and 4 git commands to generate.