diff options
| author | Richard Linden <none@none> | 2012-10-09 18:07:31 -0700 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2012-10-09 18:07:31 -0700 | 
| commit | 8bb0a6ef737cb40c8f64f37fe64ecc7f6a87ae18 (patch) | |
| tree | e8efc55dbafa024dd716a7fbb7e53d94d4e71635 | |
| parent | f5852ff448c1467c08474061caef44bba3c06f55 (diff) | |
post merge cleanup
| -rw-r--r-- | indra/llcommon/lltracerecording.cpp | 32 | ||||
| -rw-r--r-- | indra/llcommon/lltracerecording.h | 2 | 
2 files changed, 17 insertions, 17 deletions
| diff --git a/indra/llcommon/lltracerecording.cpp b/indra/llcommon/lltracerecording.cpp index 93d2136e7f..d931c4ed29 100644 --- a/indra/llcommon/lltracerecording.cpp +++ b/indra/llcommon/lltracerecording.cpp @@ -46,6 +46,16 @@ Recording::Recording()  Recording::~Recording()  {} +void Recording::update() +{ +	if (isStarted()) +	{ +		LLTrace::get_thread_recorder()->update(this); +		mElapsedSeconds = 0.0; +		mSamplingTimer.reset(); +	} +} +  void Recording::handleReset()  {  	mRates.write()->reset(); @@ -56,27 +66,17 @@ void Recording::handleReset()  	mSamplingTimer.reset();  } -void Recording::update() -{ -	if (mIsStarted) -	{ -		LLTrace::get_thread_recorder()->update(this); -		mElapsedSeconds = 0.0; -		mSamplingTimer.reset(); -	} -} -  void Recording::handleStart()  { -		mSamplingTimer.reset(); -		LLTrace::get_thread_recorder()->activate(this); +	mSamplingTimer.reset(); +	LLTrace::get_thread_recorder()->activate(this);  }  void Recording::handleStop() -	{ -		mElapsedSeconds += mSamplingTimer.getElapsedTimeF64(); -		LLTrace::get_thread_recorder()->deactivate(this); -	} +{ +	mElapsedSeconds += mSamplingTimer.getElapsedTimeF64(); +	LLTrace::get_thread_recorder()->deactivate(this); +}  void Recording::handleSplitTo(Recording& other)  { diff --git a/indra/llcommon/lltracerecording.h b/indra/llcommon/lltracerecording.h index 6e5f118cf6..092dc7ff2c 100644 --- a/indra/llcommon/lltracerecording.h +++ b/indra/llcommon/lltracerecording.h @@ -254,7 +254,7 @@ namespace LLTrace  			mCurPeriod(0),  			mTotalValid(false),  			mRecordingPeriods(new Recording[num_periods]) -	{ +		{  			llassert(mNumPeriods > 0);  		} | 
