diff --git a/indra/llcommon/llfasttimer.h b/indra/llcommon/llfasttimer.h index 602a2f7c7..898ed496b 100644 --- a/indra/llcommon/llfasttimer.h +++ b/indra/llcommon/llfasttimer.h @@ -54,6 +54,7 @@ public: // common messaging components FTM_PUMP, FTM_CURL, + FTM_PUMPIO, // common simulation components FTM_UPDATE_ANIMATION, diff --git a/indra/llmessage/llpumpio.cpp b/indra/llmessage/llpumpio.cpp index b8c6b1652..2f86269ea 100644 --- a/indra/llmessage/llpumpio.cpp +++ b/indra/llmessage/llpumpio.cpp @@ -450,7 +450,7 @@ void LLPumpIO::pump() void LLPumpIO::pump(const S32& poll_timeout) { LLMemType m1(LLMemType::MTYPE_IO_PUMP); - LLFastTimer t1(LLFastTimer::FTM_PUMP); + LLFastTimer t1(LLFastTimer::FTM_PUMPIO); //llinfos << "LLPumpIO::pump()" << llendl; // Run any pending runners. diff --git a/indra/newview/llfasttimerview.cpp b/indra/newview/llfasttimerview.cpp index 92b6dddbf..27661567e 100644 --- a/indra/newview/llfasttimerview.cpp +++ b/indra/newview/llfasttimerview.cpp @@ -85,6 +85,7 @@ static struct ft_display_info ft_display_table[] = { LLFastTimer::FTM_IDLE, " Idle", &blue0, 0 }, { LLFastTimer::FTM_PUMP, " Pump", &LLColor4::magenta2, 1 }, { LLFastTimer::FTM_CURL, " Curl", &LLColor4::magenta3, 0 }, + { LLFastTimer::FTM_PUMPIO, " PumpIO", &LLColor4::magenta1, 0 }, { LLFastTimer::FTM_INVENTORY, " Inventory Update", &LLColor4::purple6, 1 }, { LLFastTimer::FTM_AUTO_SELECT, " Open and Select", &LLColor4::red, 0 }, { LLFastTimer::FTM_FILTER, " Filter", &LLColor4::red2, 0 },