Use inheritance for trace descriptor and positions
[babeltrace.git] / formats / ctf / types / struct.c
index 4eda7d6994d15b097f7a5d0d7f37b5d27cbf6f5b..2a3fa4c5366c4c5730f988edb9cc74e2a812ed7a 100644 (file)
 
 #include <babeltrace/ctf/types.h>
 
-void ctf_struct_begin(struct stream_pos *pos,
-                     const struct type_struct *struct_type)
+void ctf_struct_begin(struct stream_pos *ppos,
+                     const struct declaration_struct *struct_declaration)
 {
-       align_pos(pos, struct_type->p.alignment);
+       struct ctf_stream_pos *pos = ctf_pos(ppos);
+
+       ctf_align_pos(pos, struct_declaration->p.alignment);
 }
 
-void ctf_struct_end(struct stream_pos *pos,
-                   const struct type_struct *struct_type)
+void ctf_struct_end(struct stream_pos *ppos,
+                   const struct declaration_struct *struct_declaration)
 {
 }
This page took 0.024624 seconds and 4 git commands to generate.