diff options
| author | Dave Parks <davep@lindenlab.com> | 2009-12-18 13:21:55 -0600 | 
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2009-12-18 13:21:55 -0600 | 
| commit | 5015886e1763887f534321790d56b6cee5a75dfa (patch) | |
| tree | 83bd71a89f6453da35a37ab3b139d6b5d4beeb89 | |
| parent | 4c9d37c0906bd0218a5db08ea4fc253adfc684c9 (diff) | |
Timers to track time spent waiting on message system.
| -rw-r--r-- | indra/newview/llviewermessage.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/llworld.cpp | 2 | 
2 files changed, 4 insertions, 0 deletions
| diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp index 0f56b7ebd7..0489077dc8 100644 --- a/indra/newview/llviewermessage.cpp +++ b/indra/newview/llviewermessage.cpp @@ -3144,6 +3144,7 @@ const F32 THRESHOLD_HEAD_ROT_QDOT = 0.9997f;	// ~= 2.5 degrees -- if its less th  const F32 MAX_HEAD_ROT_QDOT = 0.99999f;			// ~= 0.5 degrees -- if its greater than this then no need to update head_rot  												// between these values we delay the updates (but no more than one second) +static LLFastTimer::DeclareTimer FTM_AGENT_UPDATE_SEND("Send Message");  void send_agent_update(BOOL force_send, BOOL send_reliable)  { @@ -3302,6 +3303,7 @@ void send_agent_update(BOOL force_send, BOOL send_reliable)  	if (duplicate_count < DUP_MSGS && !gDisconnected)  	{ +		LLFastTimer t(FTM_AGENT_UPDATE_SEND);  		// Build the message  		msg->newMessageFast(_PREHASH_AgentUpdate);  		msg->nextBlockFast(_PREHASH_AgentData); diff --git a/indra/newview/llworld.cpp b/indra/newview/llworld.cpp index 118d7f8d08..feab6d126b 100644 --- a/indra/newview/llworld.cpp +++ b/indra/newview/llworld.cpp @@ -1024,9 +1024,11 @@ void LLWorld::disconnectRegions()  	}  } +static LLFastTimer::DeclareTimer FTM_ENABLE_SIMULATOR("Enable Sim");  void process_enable_simulator(LLMessageSystem *msg, void **user_data)  { +	LLFastTimer t(FTM_ENABLE_SIMULATOR);  	// enable the appropriate circuit for this simulator and   	// add its values into the gSimulator structure  	U64		handle; | 
