X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=include%2Fbabeltrace%2Fctf-text%2Ftypes.h;h=8681f39d64b64cee3f0ab72dbcb3b7bc675206db;hp=debecfef93728e56ed4cc417f13ddb12549b1df0;hb=1cf393f63db4dce618515749d5549564d1313ee4;hpb=9426d563f74aed0b0f32818d4ef535cdfacdb167 diff --git a/include/babeltrace/ctf-text/types.h b/include/babeltrace/ctf-text/types.h index debecfef..8681f39d 100644 --- a/include/babeltrace/ctf-text/types.h +++ b/include/babeltrace/ctf-text/types.h @@ -37,10 +37,10 @@ #include /* - * Inherit from both struct stream_pos and struct trace_descriptor. + * Inherit from both struct bt_stream_pos and struct trace_descriptor. */ struct ctf_text_stream_pos { - struct stream_pos parent; + struct bt_stream_pos parent; struct trace_descriptor trace_descriptor; FILE *fp; /* File pointer. NULL if unset. */ int depth; @@ -53,7 +53,7 @@ struct ctf_text_stream_pos { }; static inline -struct ctf_text_stream_pos *ctf_text_pos(struct stream_pos *pos) +struct ctf_text_stream_pos *ctf_text_pos(struct bt_stream_pos *pos) { return container_of(pos, struct ctf_text_stream_pos, parent); } @@ -62,21 +62,21 @@ struct ctf_text_stream_pos *ctf_text_pos(struct stream_pos *pos) * Write only is supported for now. */ BT_HIDDEN -int ctf_text_integer_write(struct stream_pos *pos, struct definition *definition); +int ctf_text_integer_write(struct bt_stream_pos *pos, struct definition *definition); BT_HIDDEN -int ctf_text_float_write(struct stream_pos *pos, struct definition *definition); +int ctf_text_float_write(struct bt_stream_pos *pos, struct definition *definition); BT_HIDDEN -int ctf_text_string_write(struct stream_pos *pos, struct definition *definition); +int ctf_text_string_write(struct bt_stream_pos *pos, struct definition *definition); BT_HIDDEN -int ctf_text_enum_write(struct stream_pos *pos, struct definition *definition); +int ctf_text_enum_write(struct bt_stream_pos *pos, struct definition *definition); BT_HIDDEN -int ctf_text_struct_write(struct stream_pos *pos, struct definition *definition); +int ctf_text_struct_write(struct bt_stream_pos *pos, struct definition *definition); BT_HIDDEN -int ctf_text_variant_write(struct stream_pos *pos, struct definition *definition); +int ctf_text_variant_write(struct bt_stream_pos *pos, struct definition *definition); BT_HIDDEN -int ctf_text_array_write(struct stream_pos *pos, struct definition *definition); +int ctf_text_array_write(struct bt_stream_pos *pos, struct definition *definition); BT_HIDDEN -int ctf_text_sequence_write(struct stream_pos *pos, struct definition *definition); +int ctf_text_sequence_write(struct bt_stream_pos *pos, struct definition *definition); static inline void print_pos_tabs(struct ctf_text_stream_pos *pos)