diff options
author | Mark Palange (Mani) <palange@lindenlab.com> | 2010-06-09 13:55:57 -0700 |
---|---|---|
committer | Mark Palange (Mani) <palange@lindenlab.com> | 2010-06-09 13:55:57 -0700 |
commit | 781e758a6a4430d52a3cc5928187b86d92c8a485 (patch) | |
tree | d5daa039525d29bda6c23de9c471c7cd21cd2c1c /indra/llcommon/llfasttimer_class.cpp | |
parent | e24bfa78666788bc1e5179ff5d4ac3bf7d0a5491 (diff) | |
parent | 6bafc3c3c9503dd05cf8a0a6ce64bca75285df58 (diff) |
Automated merge with ssh://hg.lindenlab.com/dessie/viewer-release
Diffstat (limited to 'indra/llcommon/llfasttimer_class.cpp')
-rw-r--r-- | indra/llcommon/llfasttimer_class.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llfasttimer_class.cpp b/indra/llcommon/llfasttimer_class.cpp index f39a4e6619..20727dd76e 100644 --- a/indra/llcommon/llfasttimer_class.cpp +++ b/indra/llcommon/llfasttimer_class.cpp @@ -238,7 +238,7 @@ U64 LLFastTimer::countsPerSecond() // counts per second for the *32-bit* timer #else // windows or x86-mac or x86-linux or x86-solaris U64 LLFastTimer::countsPerSecond() // counts per second for the *32-bit* timer { - static U64 sCPUClockFrequency = U64(CProcessor().GetCPUFrequency(50)); + static U64 sCPUClockFrequency = U64(LLProcessorInfo().getCPUFrequency()); // we drop the low-order byte in our timers, so report a lower frequency return sCPUClockFrequency >> 8; |