From: Yannick Brosseau Date: Tue, 18 Sep 2012 21:11:21 +0000 (-0400) Subject: Don't compare birth time between process structs. X-Git-Tag: v1.5-beta1~35 X-Git-Url: http://git.liburcu.org/?p=lttv.git;a=commitdiff_plain;h=f2f8d567679291d581f36a85a09769075d9d8aaa Don't compare birth time between process structs. We don't always have valid information for it Signed-off-by: Yannick Brosseau --- diff --git a/lttv/modules/gui/controlflow/processlist.c b/lttv/modules/gui/controlflow/processlist.c index e5f44a3f..ed775422 100644 --- a/lttv/modules/gui/controlflow/processlist.c +++ b/lttv/modules/gui/controlflow/processlist.c @@ -133,8 +133,10 @@ static gboolean process_list_equ_fct(gconstpointer a, gconstpointer b) ret = FALSE; if(likely((pa->pid == 0 && (pa->cpu != pb->cpu)))) ret = FALSE; - if(unlikely(ltt_time_compare(pa->birth, pb->birth) != 0)) - ret = FALSE; + //TODO ybrosseau 2012-09-18 Check if we want to reenable birth comparision + // We currently do not have valid birth info, so don't compare it + /* if(unlikely(ltt_time_compare(pa->birth, pb->birth) != 0)) + ret = FALSE;*/ if(unlikely(pa->trace_num != pb->trace_num)) ret = FALSE;