summaryrefslogtreecommitdiff
path: root/indra/llmessage/llioutil.cpp
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2011-07-25 09:49:58 -0400
committerOz Linden <oz@lindenlab.com>2011-07-25 09:49:58 -0400
commitb8be8820ea52a77df6362179b1dda3fc4a305913 (patch)
tree061d59de4c1ccca88aa82ec7381790581f90bee9 /indra/llmessage/llioutil.cpp
parente0728065251fbd5f45218eb94c056a92162eb54d (diff)
parenta5769e81263d6d004033b914c1cbf1a8296923d9 (diff)
close head created by 54e071a92450
Diffstat (limited to 'indra/llmessage/llioutil.cpp')
-rw-r--r--indra/llmessage/llioutil.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llmessage/llioutil.cpp b/indra/llmessage/llioutil.cpp
index 2e6ee59ff2..8c50fd5069 100644
--- a/indra/llmessage/llioutil.cpp
+++ b/indra/llmessage/llioutil.cpp
@@ -43,6 +43,8 @@ LLIOPipe::EStatus LLIOFlush::process_impl(
return STATUS_OK;
}
+
+static LLFastTimer::DeclareTimer FTM_PROCESS_SLEEP("IO Sleep");
/**
* @class LLIOSleep
*/
@@ -53,6 +55,7 @@ LLIOPipe::EStatus LLIOSleep::process_impl(
LLSD& context,
LLPumpIO* pump)
{
+ LLFastTimer t(FTM_PROCESS_SLEEP);
if(mSeconds > 0.0)
{
if(pump) pump->sleepChain(mSeconds);
@@ -62,6 +65,7 @@ LLIOPipe::EStatus LLIOSleep::process_impl(
return STATUS_DONE;
}
+static LLFastTimer::DeclareTimer FTM_PROCESS_ADD_CHAIN("Add Chain");
/**
* @class LLIOAddChain
*/
@@ -72,6 +76,7 @@ LLIOPipe::EStatus LLIOAddChain::process_impl(
LLSD& context,
LLPumpIO* pump)
{
+ LLFastTimer t(FTM_PROCESS_ADD_CHAIN);
pump->addChain(mChain, mTimeout);
return STATUS_DONE;
}