Update pretty-printing output
[babeltrace.git] / include / babeltrace / ctf / metadata.h
index de1a70d101b921975a5f10fb23b183ff9e558adb..903d018dd9cb7c6811fcb9ce42712a29864c88f3 100644 (file)
 
 struct ctf_trace;
 struct ctf_stream_class;
+struct ctf_stream;
 struct ctf_event;
 
+struct ctf_stream {
+       struct ctf_stream_class *stream_class;
+       uint64_t timestamp;                     /* Current timestamp, in ns */
+};
+
 struct ctf_file_stream {
        uint64_t stream_id;
-       struct ctf_stream_class *stream;
+       struct ctf_stream stream;
        struct ctf_stream_pos pos;      /* current stream position */
 };
 
This page took 0.02413 seconds and 4 git commands to generate.