X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Fctf.c;h=63fe47e3cd6382b8f2a31eac7c8e31acc4d7468d;hp=de760a83c1a48944d839fc1337d3e48b7ddf2a42;hb=11796b9629d5a870163e4edd67e457576553aaef;hpb=698f0fe44073e0bfdc6c26222c3bdc1a0dc2d423 diff --git a/formats/ctf/ctf.c b/formats/ctf/ctf.c index de760a83..63fe47e3 100644 --- a/formats/ctf/ctf.c +++ b/formats/ctf/ctf.c @@ -30,16 +30,17 @@ static const struct format ctf_format = { .int_read = ctf_int_read, .uint_write = ctf_uint_write, .int_write = ctf_int_write, - .bitfield_unsigned_read = ctf_bitfield_unsigned_read, - .bitfield_signed_read = ctf_bitfield_signed_read, - .bitfield_unsigned_write = ctf_bitfield_unsigned_write, - .bitfield_signed_write = ctf_bitfield_signed_write, + .double_read = ctf_double_read, + .double_write = ctf_double_write, .float_copy = ctf_float_copy, .string_copy = ctf_string_copy, - .enum_uint_to_quark = ctf_enum_uint_to_quark, - .enum_int_to_quark = ctf_enum_int_to_quark, - .enum_quark_to_uint = ctf_enum_quark_to_uint, - .enum_quark_to_int = ctf_enum_quark_to_int, + .string_read = ctf_string_read, + .string_write = ctf_string_write, + .string_free_temp = ctf_string_free_temp, + .enum_read = ctf_enum_read, + .enum_write = ctf_enum_write, + .struct_begin = ctf_struct_begin, + .struct_end = ctf_struct_end, }; void ctf_init(void)