X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Fmodules%2Ftext%2FtextDump.c;h=c105a07c9bb80a06188a6bfbd9ff81472cadf217;hb=08b1c66e3a5ad9588d08f9477af98c0cda4f070c;hp=bafef11f49cd6d1b05e65c7d636e3b3500951ca8;hpb=dbb7bb0937929c494291d7a286c6ece90c27ac07;p=lttv.git diff --git a/ltt/branches/poly/lttv/modules/text/textDump.c b/ltt/branches/poly/lttv/modules/text/textDump.c index bafef11f..c105a07c 100644 --- a/ltt/branches/poly/lttv/modules/text/textDump.c +++ b/ltt/branches/poly/lttv/modules/text/textDump.c @@ -329,7 +329,7 @@ static int write_event_content(void *hook_data, void *call_data) } -G_MODULE_EXPORT void init(LttvModule *self, int argc, char **argv) +static void init() { LttvAttributeValue value; @@ -337,8 +337,6 @@ G_MODULE_EXPORT void init(LttvModule *self, int argc, char **argv) g_info("Init textDump.c"); - lttv_module_require(self, "libbatchAnalysis", argc, argv); - a_string = g_string_new(""); a_file_name = NULL; @@ -393,7 +391,7 @@ G_MODULE_EXPORT void init(LttvModule *self, int argc, char **argv) } -G_MODULE_EXPORT void destroy() +static void destroy() { g_info("Destroy textDump"); @@ -419,5 +417,10 @@ G_MODULE_EXPORT void destroy() } +LTTV_MODULE("textDump", "Print events in a file", \ + "Produce a detailed text printout of a trace", \ + init, destroy, "stats", "batchAnalysis") + +