trace{-class}.c: BT_ASSERT_PRE() -> BT_ASSERT_POST() (ref. count check)
[babeltrace.git] / src / lib / trace-ir / trace-class.c
index cd5d6f829563a77dfe947950afe5e90b7aabe680..f9b8adea7e888611b4658cdb31ac1491ef0ba9b8 100644 (file)
@@ -25,6 +25,7 @@
 #include "lib/logging.h"
 
 #include "lib/assert-pre.h"
+#include "lib/assert-post.h"
 #include <babeltrace2/trace-ir/trace-class.h>
 #include <babeltrace2/trace-ir/trace-class-const.h>
 #include <babeltrace2/trace-ir/event-class.h>
@@ -106,7 +107,7 @@ void destroy_trace_class(struct bt_object *obj)
                         * The destruction listener should not have kept a
                         * reference to the trace class.
                         */
-                       BT_ASSERT_PRE(tc->base.ref_count == 1, "Destruction listener kept a reference to the trace class being destroyed: %![tc-]+T", tc);
+                       BT_ASSERT_POST(tc->base.ref_count == 1, "Destruction listener kept a reference to the trace class being destroyed: %![tc-]+T", tc);
                }
                g_array_free(tc->destruction_listeners, TRUE);
                tc->destruction_listeners = NULL;
@@ -336,9 +337,9 @@ void bt_trace_class_set_user_attributes(struct bt_trace_class *trace_class,
        BT_ASSERT_PRE(user_attributes->type == BT_VALUE_TYPE_MAP,
                "User attributes object is not a map value object.");
        BT_ASSERT_PRE_DEV_TRACE_CLASS_HOT(trace_class);
-       bt_object_put_no_null_check(trace_class->user_attributes);
+       bt_object_put_ref_no_null_check(trace_class->user_attributes);
        trace_class->user_attributes = (void *) user_attributes;
-       bt_object_get_no_null_check(trace_class->user_attributes);
+       bt_object_get_ref_no_null_check(trace_class->user_attributes);
 }
 
 void bt_trace_class_get_ref(const struct bt_trace_class *trace_class)
This page took 0.024308 seconds and 4 git commands to generate.