namespace definition_ref and definition_unref
[babeltrace.git] / formats / ctf / types / float.c
index 0cf9caeb6c7795212c53dc7d540c1a9fdd53b36e..fc7c39c1b412f794151ae34cc6678489dc543d07 100644 (file)
@@ -96,7 +96,7 @@ static void float_unlock(void)
        assert(!ret);
 }
 
-int _ctf_float_copy(struct stream_pos *destp,
+static int _ctf_float_copy(struct stream_pos *destp,
                    struct definition_float *dest_definition,
                    struct stream_pos *srcp,
                    const struct definition_float *src_definition)
@@ -216,7 +216,7 @@ 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;
@@ -272,12 +272,13 @@ 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 =
@@ -292,8 +293,9 @@ void __attribute__((constructor)) ctf_float_init(void)
                                __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);
 }
This page took 0.024107 seconds and 4 git commands to generate.