lib: use BT_LIB_LOG*_APPEND_CAUSE() where appropriate
[babeltrace.git] / src / lib / trace-ir / stream.c
index 7eb8e9cfa9731b8cecde04ae6d174f4a6e043e35..81f212da57865856c9ba5beb52414f77df8795b6 100644 (file)
@@ -40,6 +40,7 @@
 #include "stream-class.h"
 #include "stream.h"
 #include "trace.h"
+#include "lib/func-status.h"
 
 #define BT_ASSERT_PRE_STREAM_HOT(_stream) \
        BT_ASSERT_PRE_HOT((_stream), "Stream", ": %!+s", (_stream))
@@ -113,14 +114,14 @@ struct bt_stream *create_stream_with_id(struct bt_stream_class *stream_class,
                trace, id);
        stream = g_new0(struct bt_stream, 1);
        if (!stream) {
-               BT_LOGE_STR("Failed to allocate one stream.");
+               BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate one stream.");
                goto error;
        }
 
        bt_object_init_shared_with_parent(&stream->base, destroy_stream);
        stream->name.str = g_string_new(NULL);
        if (!stream->name.str) {
-               BT_LOGE_STR("Failed to allocate a GString.");
+               BT_LIB_LOGE_APPEND_CAUSE("Failed to allocate a GString.");
                goto error;
        }
 
@@ -130,7 +131,8 @@ struct bt_stream *create_stream_with_id(struct bt_stream_class *stream_class,
                (bt_object_pool_destroy_object_func) bt_stream_free_packet,
                stream);
        if (ret) {
-               BT_LOGE("Failed to initialize packet pool: ret=%d", ret);
+               BT_LIB_LOGE_APPEND_CAUSE(
+                       "Failed to initialize packet pool: ret=%d", ret);
                goto error;
        }
 
@@ -206,7 +208,7 @@ const char *bt_stream_get_name(const struct bt_stream *stream)
        return stream->name.value;
 }
 
-enum bt_stream_status bt_stream_set_name(struct bt_stream *stream,
+enum bt_stream_set_name_status bt_stream_set_name(struct bt_stream *stream,
                const char *name)
 {
        BT_ASSERT_PRE_NON_NULL(stream, "Stream");
@@ -215,7 +217,7 @@ enum bt_stream_status bt_stream_set_name(struct bt_stream *stream,
        g_string_assign(stream->name.str, name);
        stream->name.value = stream->name.str->str;
        BT_LIB_LOGD("Set stream's name: %!+s", stream);
-       return BT_STREAM_STATUS_OK;
+       return BT_FUNC_STATUS_OK;
 }
 
 uint64_t bt_stream_get_id(const struct bt_stream *stream)
This page took 0.023338 seconds and 4 git commands to generate.