summaryrefslogtreecommitdiff
path: root/cpp/include
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2010-05-12 19:20:41 +0000
committerAlan Conway <aconway@apache.org>2010-05-12 19:20:41 +0000
commit5f6ce80e6e223b203a35ec00c8d3f2a64e23c715 (patch)
tree74df7a85d33a628a5bbe2e9d75b095e514a5e368 /cpp/include
parent1d329b62c2dc4d8ccc41d5689f75389aa6a4fb6d (diff)
downloadqpid-python-5f6ce80e6e223b203a35ec00c8d3f2a64e23c715.tar.gz
Remove incorrect optimization in Logger.
Use of read-write lock causes a race in log. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@943641 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include')
-rw-r--r--cpp/include/qpid/log/Logger.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/cpp/include/qpid/log/Logger.h b/cpp/include/qpid/log/Logger.h
index 80622365b1..d7da1f077a 100644
--- a/cpp/include/qpid/log/Logger.h
+++ b/cpp/include/qpid/log/Logger.h
@@ -98,7 +98,6 @@ class Logger : private boost::noncopyable {
typedef std::set<Statement*> Statements;
sys::Mutex lock;
- sys::RWlock outputsLock;
inline void enable_unlocked(Statement* s);
Statements statements;