diff options
Diffstat (limited to 'indra/llcommon/llsingleton.cpp')
-rw-r--r-- | indra/llcommon/llsingleton.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/indra/llcommon/llsingleton.cpp b/indra/llcommon/llsingleton.cpp index 3049e81139..5b0990e213 100644 --- a/indra/llcommon/llsingleton.cpp +++ b/indra/llcommon/llsingleton.cpp @@ -33,7 +33,6 @@ #include "llerrorcontrol.h" #include "llexception.h" #include "llmainthreadtask.h" -#include "../test/writestr.h" #include <algorithm> #include <iostream> // std::cerr in dire emergency #include <sstream> @@ -66,12 +65,6 @@ private: mutex_t mMutex; public: - ~MasterList() - { - writestr(2, "~MasterList()"); - } - -public: // Instantiate this to both obtain a reference to MasterList::instance() // and lock its mutex for the lifespan of this Lock instance. class Lock @@ -154,7 +147,6 @@ public: private: list_t& get_initializing_() { - writestr(2, "MasterList::get_initializing_()"); LLSingletonBase::list_t* current = mInitializing.get(); if (! current) { @@ -171,7 +163,6 @@ private: // we pop the list to empty, reset() the running coroutine's local_ptr. void cleanup_initializing_() { - writestr(2, "MasterList::cleanup_initializing_()"); mInitializing.reset(nullptr); } }; @@ -300,14 +291,10 @@ void LLSingletonBase::capture_dependency(LLSingletonBase* sb) // library may have shut down, and MasterList::mInitializing.get() might // blow up. But if we're called that late, there's really no point in // trying to capture this dependency. - writestr(2, "LLSingletonBase::capture_dependency() trampoline"); if (boost::fibers::context::active()) { - writestr(2, "still active"); sb->capture_dependency(); } - else - writestr(2, "no longer active"); } void LLSingletonBase::capture_dependency() |