X-Git-Url: https://git.efficios.com/?a=blobdiff_plain;f=src%2Flib%2Fgraph%2Fcomponent-class.c;h=c3a47291ca0ec86d739e7169d0654015bc36a9fc;hb=6375b9429f8332f3eacc2ec795aa1924c73d9cc8;hp=7f31aa3022850ebef7e2aba6ba9a344003c4d6e5;hpb=d5b13b9b6a434797f856547be1ca6a59f70ba530;p=babeltrace.git diff --git a/src/lib/graph/component-class.c b/src/lib/graph/component-class.c index 7f31aa30..c3a47291 100644 --- a/src/lib/graph/component-class.c +++ b/src/lib/graph/component-class.c @@ -20,7 +20,8 @@ #include "lib/graph/message-iterator-class.h" #define BT_ASSERT_PRE_DEV_COMP_CLS_HOT(_cc) \ - BT_ASSERT_PRE_DEV_HOT(((const struct bt_component_class *) (_cc)), \ + BT_ASSERT_PRE_DEV_HOT("component-class", \ + ((const struct bt_component_class *) (_cc)), \ "Component class", ": %!+C", (_cc)) static @@ -239,7 +240,7 @@ struct bt_component_class_sink *bt_component_class_sink_create( BT_ASSERT_PRE_NO_ERROR(); BT_ASSERT_PRE_NAME_NON_NULL(name); - BT_ASSERT_PRE_NON_NULL(method, "Consume next method"); + BT_ASSERT_PRE_NON_NULL("consume-method", method, "Consume next method"); BT_LOGI("Creating sink component class: " "name=\"%s\", consume-method-addr=%p", name, method); @@ -539,7 +540,7 @@ bt_component_class_set_description( "addr=%p, name=\"%s\", type=%s", comp_cls, bt_component_class_get_name(comp_cls), - bt_component_class_type_string(comp_cls->type)); + bt_common_component_class_type_string(comp_cls->type)); return BT_FUNC_STATUS_OK; } @@ -549,7 +550,7 @@ enum bt_component_class_set_help_status bt_component_class_set_help( { BT_ASSERT_PRE_NO_ERROR(); BT_ASSERT_PRE_COMP_CLS_NON_NULL(comp_cls); - BT_ASSERT_PRE_NON_NULL(help, "Help"); + BT_ASSERT_PRE_NON_NULL("help-text", help, "Help text"); BT_ASSERT_PRE_DEV_COMP_CLS_HOT(comp_cls); g_string_assign(comp_cls->help, help); BT_LIB_LOGD("Set component class's help text: %!+C", comp_cls);