From 858f4d1487063b6da671b9cb153efd9b944be4ca Mon Sep 17 00:00:00 2001 From: Shyotl Date: Wed, 8 Jun 2011 23:11:41 -0500 Subject: [PATCH] Fasttimer was using incorrect clock count precision. --- indra/llcommon/llfasttimer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/llcommon/llfasttimer.h b/indra/llcommon/llfasttimer.h index c1fea04b3..3a7f30511 100644 --- a/indra/llcommon/llfasttimer.h +++ b/indra/llcommon/llfasttimer.h @@ -226,7 +226,7 @@ public: //gTimerBins[gCurTimerBin]++; //LLTimer::sNumTimerCalls++; - U64 cpu_clocks = getCPUClockCount64(); + U64 cpu_clocks = getCPUClockCount32(); sStart[sCurDepth] = cpu_clocks; sCurDepth++; @@ -241,7 +241,7 @@ public: // These don't get counted, because they use CPU clockticks //gTimerBins[gCurTimerBin]++; //LLTimer::sNumTimerCalls++; - end = getCPUClockCount64(); + end = getCPUClockCount32(); sCurDepth--; delta = end - sStart[sCurDepth];