ir: add bt_ctf_event_get_clock_value()
[babeltrace.git] / include / babeltrace / ctf-ir / stream-internal.h
index 7461d321f0fe34c85c67a9898dd04fd29a25da8a..dc392f4ad907fce01be034de6d089e7360aa1788 100644 (file)
@@ -44,19 +44,17 @@ struct bt_ctf_stream {
        GPtrArray *events;
        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;
+       GHashTable *clock_values; /* Maps clock addresses to (uint64_t *) */
 };
 
-/* 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);
+int bt_ctf_stream_set_fd(struct bt_ctf_stream *stream, int fd);
 
 BT_HIDDEN
-int bt_ctf_stream_set_fd(struct bt_ctf_stream *stream, int fd);
+void bt_ctf_stream_update_clock_value(struct bt_ctf_stream *stream,
+               struct bt_ctf_field *value_field);
 
 #endif /* BABELTRACE_CTF_WRITER_STREAM_INTERNAL_H */
This page took 0.036788 seconds and 4 git commands to generate.