From mboxrd@z Thu Jan 1 00:00:00 1970 From: compudj@krystal.dyndns.org (Mathieu Desnoyers) Date: Tue, 14 Sep 2010 16:20:30 -0400 Subject: [ltt-dev] [PATCH] Fix passing factors in recursive function In-Reply-To: <1284495145-3483-1-git-send-email-masoume.jabbarifar@polymtl.ca> References: <1284495145-3483-1-git-send-email-masoume.jabbarifar@polymtl.ca> Message-ID: <20100914202030.GA2576@Krystal> * masoume.jabbarifar at polymtl.ca (masoume.jabbarifar at polymtl.ca) wrote: > From: Masoume Jabbarifar > Hi Masoume, Please CC Benjamin when posting these patches, so we can get his feedback. Also a description of the problem this is addressing would be welcome in the patch header (before the "---" line). Typical patch (the two first lines are provided by your mail client, you have to provide the rest): From: Your email Subject: [PATCH] Fix passing factors in recursive function Some detail about what the patch does. Signed-off-by: Your email. Thanks, Mathieu > --- > lttv/lttv/sync/factor_reduction_accuracy.c | 10 ++++++++-- > 1 files changed, 8 insertions(+), 2 deletions(-) > > diff --git a/lttv/lttv/sync/factor_reduction_accuracy.c b/lttv/lttv/sync/factor_reduction_accuracy.c > index a63dae7..ffb2d95 100644 > --- a/lttv/lttv/sync/factor_reduction_accuracy.c > +++ b/lttv/lttv/sync/factor_reduction_accuracy.c > @@ -415,8 +415,14 @@ static void getFactors(AllFactors* const allFactors, unsigned int** const > unsigned int reference; > PairFactors** const pairFactors= allFactors->pairFactors; > > - reference= references[traceNum]; > - > + if (traceNum == references[traceNum]) > + { > + reference= traceNum; > + } > + else > + { > + reference= predecessors[references[traceNum]][traceNum]; > + } > if (reference == traceNum) > { > factors->offset= 0.; > -- > 1.6.0.4 > > > _______________________________________________ > ltt-dev mailing list > ltt-dev at lists.casi.polymtl.ca > http://lists.casi.polymtl.ca/cgi-bin/mailman/listinfo/ltt-dev > -- Mathieu Desnoyers Operating System Efficiency R&D Consultant EfficiOS Inc. http://www.efficios.com