Update sequence (type specifier -> field ref), fix definition lookup
[babeltrace.git] / formats / ctf / types / struct.c
index dc3a06eb0a8bcda6b6474d7a426d275fee5f0ba8..2913f4d0e2d41d6099e6cfda5ce18339826b224c 100644 (file)
 
 #include <babeltrace/ctf/types.h>
 
-void ctf_struct_begin(struct stream_pos *pos,
-                     const struct declaration_struct *struct_declaration)
+int ctf_struct_rw(struct stream_pos *ppos, struct definition *definition)
 {
-       align_pos(pos, struct_declaration->p.alignment);
-}
+       struct declaration *declaration = definition->declaration;
+       struct ctf_stream_pos *pos = ctf_pos(ppos);
 
-void ctf_struct_end(struct stream_pos *pos,
-                   const struct declaration_struct *struct_declaration)
-{
+       ctf_align_pos(pos, declaration->alignment);
+       return struct_rw(ppos, definition);
 }
This page took 0.02435 seconds and 4 git commands to generate.