path hooks/event
[lttv.git] / ltt / branches / poly / lttv / modules / text / textDump.c
index bafef11f49cd6d1b05e65c7d636e3b3500951ca8..cc400d9299ffb8a5ca748e84a14d7000006bdd49 100644 (file)
@@ -283,6 +283,7 @@ static gboolean write_traceset_footer(void *hook_data, void *call_data)
   fprintf(a_file,"End trace set\n\n");
 
   if(LTTV_IS_TRACESET_STATS(tc)) {
+    lttv_stats_sum_traceset((LttvTracesetStats *)tc);
     print_stats(a_file, (LttvTracesetStats *)tc);
   }
 
@@ -329,7 +330,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 +338,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 +392,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 +418,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")
+
+
 
 
This page took 0.023082 seconds and 4 git commands to generate.