lib: rename bt_value_array_get_size() -> bt_value_array_get_length()
[babeltrace.git] / src / cli / babeltrace2-plugins.c
index cc950ff21ff1ee3b87bc007a4b05b578e9dca8b3..1defc30668dea965404ff83709621a3e92f9a4c6 100644 (file)
@@ -22,7 +22,7 @@
  * SOFTWARE.
  */
 
-#define BT_LOG_TAG "CLI"
+#define BT_LOG_TAG "CLI/PLUGINS"
 #include "logging.h"
 
 #include "babeltrace2-plugins.h"
@@ -77,6 +77,11 @@ size_t get_loaded_plugins_count(void)
        return loaded_plugins->len;
 }
 
+const bt_plugin **borrow_loaded_plugins(void)
+{
+       return (const bt_plugin **) loaded_plugins->pdata;
+}
+
 const bt_plugin *borrow_loaded_plugin(size_t index)
 {
        BT_ASSERT(index < loaded_plugins->len);
@@ -123,7 +128,7 @@ int load_dynamic_plugins(const bt_value *plugin_paths)
 {
        int nr_paths, i, ret = 0;
 
-       nr_paths = bt_value_array_get_size(plugin_paths);
+       nr_paths = bt_value_array_get_length(plugin_paths);
        if (nr_paths < 0) {
                BT_CLI_LOGE_APPEND_CAUSE(
                        "Cannot load dynamic plugins: no plugin path.");
This page took 0.046453 seconds and 4 git commands to generate.