X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2FtextDump.c;h=2734e3beea9266c7873345007435c6bbbf0c1b7c;hb=fb87279eb8b98f90792165fcc0eee9981c930683;hp=646cb0812123ae9bc5d23baac04e3a465ac18515;hpb=c432246e06bb83a3d43a6668517486fb6b4b959d;p=lttv.git diff --git a/ltt/branches/poly/lttv/textDump.c b/ltt/branches/poly/lttv/textDump.c index 646cb081..2734e3be 100644 --- a/ltt/branches/poly/lttv/textDump.c +++ b/ltt/branches/poly/lttv/textDump.c @@ -59,7 +59,7 @@ void print_field(LttEvent *e, LttField *f, GString *s, gboolean field_names) { case LTT_ENUM: g_string_append_printf(s, " %s", ltt_enum_string_get(type, - event_get_unsigned(e,f))); + ltt_event_get_unsigned(e,f)-1)); break; case LTT_ARRAY: @@ -118,7 +118,8 @@ void lttv_event_to_string(LttEvent *e, LttTracefile *tf, GString *s, /* Print the process id and the state/interrupt type of the process */ } - print_field(e, field, s, field_names); + if(field) + print_field(e, field, s, field_names); } @@ -181,6 +182,7 @@ static int write_event_content(void *hook_data, void *call_data) e = tfc->e; lttv_event_to_string(e, tfc->tf, a_string, TRUE, a_field_names); + g_string_append_printf(a_string,"\n"); if(a_state) { g_string_append_printf(a_string, " %s", @@ -192,12 +194,15 @@ static int write_event_content(void *hook_data, void *call_data) } -void init(int argc, char **argv) +//void init(int argc, char **argv) +G_MODULE_EXPORT void init(LttvModule *self, int argc, char **argv) { LttvAttributeValue value; LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes()); + a_string = g_string_new(""); + a_file_name = NULL; lttv_option_add("output", 'o', "output file where the text is written", @@ -238,7 +243,7 @@ void init(int argc, char **argv) } -void destroy() +G_MODULE_EXPORT void destroy() { lttv_option_remove("output"); @@ -246,6 +251,8 @@ void destroy() lttv_option_remove("process_state"); + g_string_free(a_string, TRUE); + lttv_hooks_remove_data(before_event, write_event_content, NULL); lttv_hooks_remove_data(before_trace, write_trace_header, NULL);