allow multiple ctf streams to be open
[babeltrace.git] / plugins / ctf / plugin.c
index 16c2c5b6eaa13c08fdc5cc321b819bb880dae43b..f84f9ce04ce30e8bcba67a593a5775a2be92420f 100644 (file)
  */
 
 #include <babeltrace/plugin/plugin-macros.h>
-#include "fs/fs-internal.h"
+#include "fs/fs.h"
 #include "lttng-live/lttng-live-internal.h"
 
-/* Initialize plug-in entry points. */
+/* Initialize plug-in description. */
 BT_PLUGIN_NAME("ctf");
-BT_PLUGIN_DESCRIPTION("Babeltrace CTF plug-in.");
+BT_PLUGIN_DESCRIPTION("Built-in Babeltrace plug-in providing CTF read support.");
 BT_PLUGIN_AUTHOR("Jérémie Galarneau");
 BT_PLUGIN_LICENSE("MIT");
 
+/* Declare component classes implemented by this plug-in. */
 BT_PLUGIN_COMPONENT_CLASSES_BEGIN
-BT_PLUGIN_SOURCE_COMPONENT_CLASS_ENTRY(FS_COMPONENT_NAME,
-               FS_COMPONENT_DESCRIPTION, fs_init);
+BT_PLUGIN_SOURCE_COMPONENT_CLASS_ENTRY(CTF_FS_COMPONENT_NAME,
+               CTF_FS_COMPONENT_DESCRIPTION, ctf_fs_init);
 BT_PLUGIN_SOURCE_COMPONENT_CLASS_ENTRY(LTTNG_LIVE_COMPONENT_NAME,
                LTTNG_LIVE_COMPONENT_DESCRIPTION, lttng_live_init);
 BT_PLUGIN_COMPONENT_CLASSES_END
-
This page took 0.025228 seconds and 4 git commands to generate.