X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;ds=sidebyside;f=formats%2Fctf%2Ftypes%2Ffloat.c;h=f46e26aee2e8dabdbdea6b7d0544ed87ff4d8900;hb=1cf393f63db4dce618515749d5549564d1313ee4;hp=0cf9caeb6c7795212c53dc7d540c1a9fdd53b36e;hpb=c462e188f3e7819c7bc74f671038cdbf36e8c3c0;p=babeltrace.git diff --git a/formats/ctf/types/float.c b/formats/ctf/types/float.c index 0cf9caeb..f46e26ae 100644 --- a/formats/ctf/types/float.c +++ b/formats/ctf/types/float.c @@ -96,9 +96,9 @@ static void float_unlock(void) assert(!ret); } -int _ctf_float_copy(struct stream_pos *destp, +static int _ctf_float_copy(struct bt_stream_pos *destp, struct definition_float *dest_definition, - struct stream_pos *srcp, + struct bt_stream_pos *srcp, const struct definition_float *src_definition) { int ret; @@ -165,7 +165,7 @@ int _ctf_float_copy(struct stream_pos *destp, return 0; } -int ctf_float_read(struct stream_pos *ppos, struct definition *definition) +int ctf_float_read(struct bt_stream_pos *ppos, struct definition *definition) { struct definition_float *float_definition = container_of(definition, struct definition_float, p); @@ -216,13 +216,13 @@ int ctf_float_read(struct stream_pos *ppos, struct definition *definition) } end_unref: - definition_unref(tmpdef); + bt_definition_unref(tmpdef); end: float_unlock(); return ret; } -int ctf_float_write(struct stream_pos *ppos, struct definition *definition) +int ctf_float_write(struct bt_stream_pos *ppos, struct definition *definition) { struct definition_float *float_definition = container_of(definition, struct definition_float, p); @@ -272,28 +272,30 @@ int ctf_float_write(struct stream_pos *ppos, struct definition *definition) ret = _ctf_float_copy(ppos, float_definition, &srcp.parent, tmpfloat); end_unref: - definition_unref(tmpdef); + bt_definition_unref(tmpdef); end: float_unlock(); return ret; } +static void __attribute__((constructor)) ctf_float_init(void) { static_float_declaration = - float_declaration_new(FLT_MANT_DIG, + bt_float_declaration_new(FLT_MANT_DIG, sizeof(float) * CHAR_BIT - FLT_MANT_DIG, BYTE_ORDER, __alignof__(float)); static_double_declaration = - float_declaration_new(DBL_MANT_DIG, + bt_float_declaration_new(DBL_MANT_DIG, sizeof(double) * CHAR_BIT - DBL_MANT_DIG, BYTE_ORDER, __alignof__(double)); } +static void __attribute__((destructor)) ctf_float_fini(void) { - declaration_unref(&static_float_declaration->p); - declaration_unref(&static_double_declaration->p); + bt_declaration_unref(&static_float_declaration->p); + bt_declaration_unref(&static_double_declaration->p); }