X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=formats%2Fctf%2Ftypes%2Ffloat.c;h=2e0bd5ce57ea78b42994e13b4ddf05e19bc79ae5;hp=fc7c39c1b412f794151ae34cc6678489dc543d07;hb=0d69b916c5ba44b63a26aa038d416d6ee286306b;hpb=13fad8b6d8ad53a55baca25234a0c59aeff83a3b diff --git a/formats/ctf/types/float.c b/formats/ctf/types/float.c index fc7c39c1..2e0bd5ce 100644 --- a/formats/ctf/types/float.c +++ b/formats/ctf/types/float.c @@ -96,9 +96,9 @@ static void float_unlock(void) assert(!ret); } -static 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 @@ static 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 bt_definition *definition) { struct definition_float *float_definition = container_of(definition, struct definition_float, p); @@ -173,7 +173,7 @@ int ctf_float_read(struct stream_pos *ppos, struct definition *definition) float_definition->declaration; struct ctf_stream_pos *pos = ctf_pos(ppos); union doubleIEEE754 u; - struct definition *tmpdef; + struct bt_definition *tmpdef; struct definition_float *tmpfloat; struct ctf_stream_pos destp; struct mmap_align mma; @@ -222,7 +222,7 @@ end: return ret; } -int ctf_float_write(struct stream_pos *ppos, struct definition *definition) +int ctf_float_write(struct bt_stream_pos *ppos, struct bt_definition *definition) { struct definition_float *float_definition = container_of(definition, struct definition_float, p); @@ -230,7 +230,7 @@ int ctf_float_write(struct stream_pos *ppos, struct definition *definition) float_definition->declaration; struct ctf_stream_pos *pos = ctf_pos(ppos); union doubleIEEE754 u; - struct definition *tmpdef; + struct bt_definition *tmpdef; struct definition_float *tmpfloat; struct ctf_stream_pos srcp; struct mmap_align mma; @@ -282,12 +282,12 @@ 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));