X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Flttv%2Fprint.c;h=812ecef5409f652cf1c6b9ef1813070da11f16d2;hb=e3523819ae718aa322635a69268f642b0c0c1f5b;hp=50c7c67473dbcb9560950892d83633b296a1f731;hpb=743e50fd0105daeea4804d68989965399bf3a4d3;p=lttv.git diff --git a/ltt/branches/poly/lttv/lttv/print.c b/ltt/branches/poly/lttv/lttv/print.c index 50c7c674..812ecef5 100644 --- a/ltt/branches/poly/lttv/lttv/print.c +++ b/ltt/branches/poly/lttv/lttv/print.c @@ -161,7 +161,7 @@ void lttv_event_to_string(LttEvent *e, GString *s, LttTime time; - guint cpu = ltt_tracefile_num(tfs->parent.tf); + guint cpu = tfs->cpu; LttvTraceState *ts = (LttvTraceState*)tfs->parent.t_context; LttvProcessState *process = ts->running_process[cpu]; @@ -183,8 +183,8 @@ void lttv_event_to_string(LttEvent *e, GString *s, g_quark_to_string(ltt_tracefile_name(tfs->parent.tf)), cpu); /* Print the process id and the state/interrupt type of the process */ - g_string_append_printf(s,", %u, %u, %s", process->pid, - process->ppid, + g_string_append_printf(s,", %u, %u, 0x%llX, %s", process->pid, + process->ppid, process->current_function, g_quark_to_string(process->state->t)); } event_type = ltt_event_eventtype(e);