diff options
author | Richard Linden <none@none> | 2012-09-06 17:18:12 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-09-06 17:18:12 -0700 |
commit | d18a3f395fb2b29dbf83092896a5ed5eb9f75f16 (patch) | |
tree | b6407609b11ad27652c2dfeecbc2d9e425236135 | |
parent | 0027ee8a7ddc47da656fb542ea4a97c00ca2683b (diff) |
SH-3275 WIP Run viewer metrics for object update messages
lltrace cleanup
-rw-r--r-- | indra/llcommon/lltrace.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/indra/llcommon/lltrace.h b/indra/llcommon/lltrace.h index f3ee90a721..1d2dcff9b7 100644 --- a/indra/llcommon/lltrace.h +++ b/indra/llcommon/lltrace.h @@ -27,6 +27,8 @@ #ifndef LL_LLTRACE_H #define LL_LLTRACE_H +#include <vector> + namespace LLTrace { class Stat @@ -51,11 +53,11 @@ namespace LLTrace struct Accumulator { - U32 mTotalTimeCounter; - U32 mChildTimeCounter; - U32 mCalls; - Accumulator* mParent; // info for caller timer - Accumulator* mLastCaller; // used to bootstrap tree construction + U32 mTotalTimeCounter, + mChildTimeCounter, + mCalls; + Accumulator* mParent, // info for caller timer + mLastCaller; // used to bootstrap tree construction const BlockTimer* mTimer; // points to block timer associated with this storage U8 mActiveCount; // number of timers with this ID active on stack bool mMoveUpTree; // needs to be moved up the tree of timers at the end of frame |