X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Fctf.c;h=48c62c02f6d3dff1be4db96f968e5d345d437c05;hp=9a0e003a2fa3e5081ca331cad3c533c7223706af;hb=334c0a83321f9140dec6436ed0c5cbb1af8ec895;hpb=a52d7f6a6dfe8c55b65eef0996b848873db39fe7 diff --git a/formats/ctf/ctf.c b/formats/ctf/ctf.c index 9a0e003a..48c62c02 100644 --- a/formats/ctf/ctf.c +++ b/formats/ctf/ctf.c @@ -30,10 +30,6 @@ 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, @@ -43,6 +39,12 @@ static const struct format ctf_format = { .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, + .array_begin = ctf_array_begin, + .array_end = ctf_array_end, + .sequence_begin = ctf_sequence_begin, + .sequence_end = ctf_sequence_end, }; void ctf_init(void)