diff options
author | Logan Dethrow <log@lindenlab.com> | 2011-07-28 10:41:59 -0400 |
---|---|---|
committer | Logan Dethrow <log@lindenlab.com> | 2011-07-28 10:41:59 -0400 |
commit | 814a2d24dca5181a31316a6f5e00e1a1cf55f23e (patch) | |
tree | c57c3bb773070bba41251a857b59549fe7e04303 /indra/llcommon/llthread.cpp | |
parent | b6be1bb71853d6a5b6b6fd9423fa00ffc8ce096c (diff) | |
parent | 825fc273ee5167052d811dc058b1834c86e005da (diff) |
Merge
Diffstat (limited to 'indra/llcommon/llthread.cpp')
-rw-r--r-- | indra/llcommon/llthread.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llcommon/llthread.cpp b/indra/llcommon/llthread.cpp index d9400fb5b3..4063cc730b 100644 --- a/indra/llcommon/llthread.cpp +++ b/indra/llcommon/llthread.cpp @@ -323,7 +323,8 @@ LLMutex::LLMutex(apr_pool_t *poolp) : LLMutex::~LLMutex() { #if MUTEX_DEBUG - llassert_always(!isLocked()); // better not be locked! + //bad assertion, the subclass LLSignal might be "locked", and that's OK + //llassert_always(!isLocked()); // better not be locked! #endif apr_thread_mutex_destroy(mAPRMutexp); mAPRMutexp = NULL; |