Restructure objects around generic_rw() accessor
[babeltrace.git] / formats / ctf / types / struct.c
index 2a3fa4c5366c4c5730f988edb9cc74e2a812ed7a..7c0a249bf03812e1730370e4f30920df2f9285e8 100644 (file)
 
 #include <babeltrace/ctf/types.h>
 
-void ctf_struct_begin(struct stream_pos *ppos,
-                     const struct declaration_struct *struct_declaration)
+void ctf_struct_rw(struct stream_pos *ppos, struct definition *definition)
 {
+       struct declaration *declaration = definition->declaration;
        struct ctf_stream_pos *pos = ctf_pos(ppos);
 
-       ctf_align_pos(pos, struct_declaration->p.alignment);
-}
-
-void ctf_struct_end(struct stream_pos *ppos,
-                   const struct declaration_struct *struct_declaration)
-{
+       ctf_align_pos(pos, declaration->alignment);
+       struct_rw(ppos, definition);
 }
This page took 0.022645 seconds and 4 git commands to generate.