Update message
[babeltrace.git] / include / babeltrace / ctf / types.h
index 95c0d5e2659056aeee33b1d09d0f23ce8a7fe2a4..c5912714f903f6f96681ae99b2696cfc8a482454 100644 (file)
 
 struct packet_index {
        off_t offset;           /* offset of the packet in the file, in bytes */
-       off_t data_offset;      /* offset of data within the packet */
+       off_t data_offset;      /* offset of data within the packet, in bits */
        size_t packet_size;     /* packet size, in bits */
        size_t content_size;    /* content size, in bits */
+       uint64_t timestamp_begin;
+       uint64_t timestamp_end;
 };
 
 /*
@@ -76,8 +78,10 @@ int ctf_enum_read(struct stream_pos *pos, struct definition *definition);
 int ctf_enum_write(struct stream_pos *pos, struct definition *definition);
 int ctf_struct_rw(struct stream_pos *pos, struct definition *definition);
 int ctf_variant_rw(struct stream_pos *pos, struct definition *definition);
-int ctf_array_rw(struct stream_pos *pos, struct definition *definition);
-int ctf_sequence_rw(struct stream_pos *pos, struct definition *definition);
+int ctf_array_read(struct stream_pos *pos, struct definition *definition);
+int ctf_array_write(struct stream_pos *pos, struct definition *definition);
+int ctf_sequence_read(struct stream_pos *pos, struct definition *definition);
+int ctf_sequence_write(struct stream_pos *pos, struct definition *definition);
 
 void ctf_move_pos_slow(struct ctf_stream_pos *pos, size_t offset, int whence);
 
This page took 0.024226 seconds and 4 git commands to generate.