Document libbabeltrace2's C API
[babeltrace.git] / src / lib / trace-ir / clock-class.c
index e982ad7f0fafc74e48ba733db4635508f15c1d4e..8a3640bcac56fc8592ced72f615782b33c9c0cc0 100644 (file)
@@ -26,7 +26,6 @@
 
 #include "lib/assert-pre.h"
 #include "common/uuid.h"
-#include <babeltrace2/trace-ir/clock-class-const.h>
 #include <babeltrace2/trace-ir/clock-class.h>
 #include "clock-class.h"
 #include "clock-snapshot.h"
@@ -35,6 +34,7 @@
 #include <babeltrace2/types.h>
 #include "compat/string.h"
 #include <inttypes.h>
+#include <stdbool.h>
 #include "lib/object.h"
 #include "common/assert.h"
 #include "lib/func-status.h"
@@ -87,6 +87,7 @@ struct bt_clock_class *bt_clock_class_create(bt_self_component *self_comp)
        int ret;
        struct bt_clock_class *clock_class = NULL;
 
+       BT_ASSERT_PRE_NO_ERROR();
        BT_ASSERT_PRE_NON_NULL(self_comp, "Self component");
        BT_LOGD_STR("Creating default clock class object");
 
@@ -151,6 +152,7 @@ const char *bt_clock_class_get_name(const struct bt_clock_class *clock_class)
 enum bt_clock_class_set_name_status bt_clock_class_set_name(
                struct bt_clock_class *clock_class, const char *name)
 {
+       BT_ASSERT_PRE_NO_ERROR();
        BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
        BT_ASSERT_PRE_NON_NULL(name, "Name");
        BT_ASSERT_PRE_DEV_CLOCK_CLASS_HOT(clock_class);
@@ -170,6 +172,7 @@ const char *bt_clock_class_get_description(
 enum bt_clock_class_set_description_status bt_clock_class_set_description(
                struct bt_clock_class *clock_class, const char *descr)
 {
+       BT_ASSERT_PRE_NO_ERROR();
        BT_ASSERT_PRE_NON_NULL(clock_class, "Clock class");
        BT_ASSERT_PRE_NON_NULL(descr, "Description");
        BT_ASSERT_PRE_DEV_CLOCK_CLASS_HOT(clock_class);
@@ -300,6 +303,7 @@ bt_clock_class_cycles_to_ns_from_origin(
 {
        int ret;
 
+       BT_ASSERT_PRE_DEV_NO_ERROR();
        BT_ASSERT_PRE_DEV_NON_NULL(clock_class, "Clock class");
        BT_ASSERT_PRE_DEV_NON_NULL(ns, "Nanoseconds (output)");
        ret = bt_util_ns_from_origin_clock_class(clock_class, cycles, ns);
@@ -338,9 +342,9 @@ void bt_clock_class_set_user_attributes(
        BT_ASSERT_PRE(user_attributes->type == BT_VALUE_TYPE_MAP,
                "User attributes object is not a map value object.");
        BT_ASSERT_PRE_DEV_CLOCK_CLASS_HOT(clock_class);
-       bt_object_put_no_null_check(clock_class->user_attributes);
+       bt_object_put_ref_no_null_check(clock_class->user_attributes);
        clock_class->user_attributes = (void *) user_attributes;
-       bt_object_get_no_null_check(clock_class->user_attributes);
+       bt_object_get_ref_no_null_check(clock_class->user_attributes);
 }
 
 void bt_clock_class_get_ref(const struct bt_clock_class *clock_class)
This page took 0.023669 seconds and 4 git commands to generate.