summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/httpstats.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llcorehttp/httpstats.cpp')
-rw-r--r--indra/llcorehttp/httpstats.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llcorehttp/httpstats.cpp b/indra/llcorehttp/httpstats.cpp
index dc2ac35c71..f64752e91e 100644
--- a/indra/llcorehttp/httpstats.cpp
+++ b/indra/llcorehttp/httpstats.cpp
@@ -41,6 +41,7 @@ HTTPStats::~HTTPStats()
void HTTPStats::resetStats()
{
+ std::lock_guard<std::mutex> lock(mStatsMutex);
mResutCodes.clear();
mDataDown.reset();
mDataUp.reset();
@@ -50,6 +51,7 @@ void HTTPStats::resetStats()
void HTTPStats::recordResultCode(S32 code)
{
+ std::lock_guard<std::mutex> lock(mStatsMutex);
std::map<S32, S32>::iterator it;
it = mResutCodes.find(code);
@@ -86,6 +88,7 @@ namespace
void HTTPStats::dumpStats()
{
+ std::lock_guard<std::mutex> lock(mStatsMutex);
std::stringstream out;
out << "HTTP DATA SUMMARY" << std::endl;