Use inheritance for trace descriptor and positions
[babeltrace.git] / formats / ctf / types / sequence.c
index 127c6588ef33fedff14362138a29a3b29c69ad88..640f451735ada1c3867c01058e69c881063a3fce 100644 (file)
 
 #include <babeltrace/ctf/types.h>
 
-void ctf_sequence_begin(struct stream_pos *pos,
-                       const struct type_sequence *sequence_type)
+void ctf_sequence_begin(struct stream_pos *ppos,
+                       const struct declaration_sequence *sequence_declaration)
 {
-       align_pos(pos, sequence_type->p.alignment);
+       struct ctf_stream_pos *pos = ctf_pos(ppos);
+
+       ctf_align_pos(pos, sequence_declaration->p.alignment);
 }
 
 void ctf_sequence_end(struct stream_pos *pos,
-                     const struct type_sequence *sequence_type)
+                     const struct declaration_sequence *sequence_declaration)
 {
 }
This page took 0.024446 seconds and 4 git commands to generate.