diff options
author | Richard Linden <none@none> | 2013-09-07 21:54:03 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-09-07 21:54:03 -0700 |
commit | c6b6ae7a45f7ab473dd839515a1717bae68af03a (patch) | |
tree | 74bc548852a9ea3cf350096b55182761362a3f6d /indra/llcommon/llfasttimer.cpp | |
parent | 3fd68662f267a3fd96d101834b3a9563bde3f61e (diff) | |
parent | e4cacda5a0cf3918bdc8091997b988235e9d4f3d (diff) |
merge
Diffstat (limited to 'indra/llcommon/llfasttimer.cpp')
-rwxr-xr-x | indra/llcommon/llfasttimer.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llcommon/llfasttimer.cpp b/indra/llcommon/llfasttimer.cpp index c58fad12e7..52b3bb39b2 100755 --- a/indra/llcommon/llfasttimer.cpp +++ b/indra/llcommon/llfasttimer.cpp @@ -276,13 +276,13 @@ void TimeBlock::updateTimes() } } -static LLFastTimer::DeclareTimer FTM_PROCESS_TIMES("Process FastTimer Times"); +static LLTrace::TimeBlock FTM_PROCESS_TIMES("Process FastTimer Times"); // not thread safe, so only call on main thread //static void TimeBlock::processTimes() { - LLFastTimer _(FTM_PROCESS_TIMES); + LL_RECORD_BLOCK_TIME(FTM_PROCESS_TIMES); get_clock_count(); // good place to calculate clock frequency // set up initial tree @@ -413,7 +413,7 @@ void TimeBlock::writeLog(std::ostream& os) LLSDSerialize::toXML(sd, os); LLMutexLock lock(sLogLock); sLogQueue.pop(); - } + } } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |