Track clock states in notification iterator
[babeltrace.git] / include / babeltrace / ctf-ir / stream-internal.h
index ca22eb1165081ea64decbac78eebccd32cd6daef..a39b1529108bfdbd511ab8162a0815f8c9c1548a 100644 (file)
 
 struct bt_ctf_stream {
        struct bt_object base;
-       /* Trace owning this stream. A stream does not own a trace. */
-       struct bt_ctf_trace *trace;
        uint32_t id;
        struct bt_ctf_stream_class *stream_class;
        /* Array of pointers to bt_ctf_event for the current packet */
        GPtrArray *events;
-       /* Array of pointers to bt_ctf_field associated with each event */
-       GPtrArray *event_headers;
-       GPtrArray *event_contexts;
        struct ctf_stream_pos pos;
        unsigned int flushed_packet_count;
+       GString *name;
        struct bt_ctf_field *packet_header;
        struct bt_ctf_field *packet_context;
-       struct bt_ctf_field *event_header;
-       struct bt_ctf_field *event_context;
 };
 
-/* Stream class should be frozen by the caller after creating a stream */
-BT_HIDDEN
-struct bt_ctf_stream *bt_ctf_stream_create(
-               struct bt_ctf_stream_class *stream_class,
-               struct bt_ctf_trace *trace);
-
 BT_HIDDEN
 int bt_ctf_stream_set_fd(struct bt_ctf_stream *stream, int fd);
 
This page took 0.037676 seconds and 4 git commands to generate.