add kprobes support, don't print textDump stats if not required
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 29 Jan 2009 23:39:49 +0000 (23:39 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 29 Jan 2009 23:39:49 +0000 (23:39 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@3302 04897980-b3bd-0310-b5e0-8ef037075253

trunk/lttv/lttv/modules/text/batchAnalysis.c

index 12dea8d53bc2c0b1992651ee500f3123372b7cc8..f78f37749f28e27f7d4f22ae5bfe6eea600f5c71 100644 (file)
@@ -69,19 +69,26 @@ static gboolean process_traceset(void *hook_data, void *call_data)
 
   LttvTracesetStats *tscs;
 
+  LttvTracesetState *tss;
+
   LttvTracesetContext *tc;
 
   LttTime start, end;
 
   g_info("BatchAnalysis begin process traceset");
 
-  tscs = g_object_new(LTTV_TRACESET_STATS_TYPE, NULL);
-  tc = &tscs->parent.parent;
+  if (a_stats) {
+    tscs = g_object_new(LTTV_TRACESET_STATS_TYPE, NULL);
+    tss = &tscs->parent;
+  } else {
+    tss = g_object_new(LTTV_TRACESET_STATE_TYPE, NULL);
+  }
+  tc = &tss->parent;
 
   g_info("BatchAnalysis initialize context");
 
   lttv_context_init(tc, traceset);
-  lttv_state_add_event_hooks(&tscs->parent);
+  lttv_state_add_event_hooks(tc);
   if(a_stats) lttv_stats_add_event_hooks(tscs);
 
   g_assert(lttv_iattribute_find_by_path(attributes, "filter/expression",
@@ -132,10 +139,13 @@ static gboolean process_traceset(void *hook_data, void *call_data)
   g_info("BatchAnalysis destroy context");
 
   lttv_filter_destroy(*(value_filter.v_pointer));
-  lttv_state_remove_event_hooks(&tscs->parent);
+  lttv_state_remove_event_hooks(tss);
   if(a_stats) lttv_stats_remove_event_hooks(tscs);
   lttv_context_fini(tc);
-  g_object_unref(tscs);
+  if (a_stats)
+    g_object_unref(tscs);
+  else
+    g_object_unref(tss);
 
   g_info("BatchAnalysis end process traceset");
   return FALSE;
This page took 0.024631 seconds and 4 git commands to generate.