diff options
author | Richard Linden <none@none> | 2012-11-15 19:46:09 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2012-11-15 19:46:09 -0800 |
commit | c136b432140f892a56d4996d5ed77e903ff0b32d (patch) | |
tree | e1af9a407b0af582349396d8cb51e2e794260d43 /indra/llcommon/llfasttimer.cpp | |
parent | 9d77e030d9a0d23cebce616631677459eec1612c (diff) |
SH-3406 WIP convert fast timers to lltrace system
eliminated min and max macros from windows.h
got rest of viewer to compile against llfasttimer changes
Diffstat (limited to 'indra/llcommon/llfasttimer.cpp')
-rw-r--r-- | indra/llcommon/llfasttimer.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llcommon/llfasttimer.cpp b/indra/llcommon/llfasttimer.cpp index d007f76e5f..4ecca12832 100644 --- a/indra/llcommon/llfasttimer.cpp +++ b/indra/llcommon/llfasttimer.cpp @@ -121,6 +121,11 @@ void BlockTimer::pushLog(LLSD log) sLogQueue.push(log); } +void BlockTimer::setLogLock(LLMutex* lock) +{ + sLogLock = lock; +} + //static #if (LL_DARWIN || LL_LINUX || LL_SOLARIS) && !(defined(__i386__) || defined(__amd64__)) |