X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fctf%2Fevents-internal.h;h=aaa09262321dfc32f62dddb185430bc7d4e771f3;hb=c22b9327cbc4e6d9053f998952ea71c3227b8e36;hp=9f579a060ded3cc272e40eeccfab3ef34475e46c;hpb=04ae3991741c634481fc3fa069664ae28bbdbaa6;p=babeltrace.git diff --git a/include/babeltrace/ctf/events-internal.h b/include/babeltrace/ctf/events-internal.h index 9f579a06..aaa09262 100644 --- a/include/babeltrace/ctf/events-internal.h +++ b/include/babeltrace/ctf/events-internal.h @@ -26,16 +26,26 @@ #include #include #include +#include #include -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 {