diff options
| author | Carl C. Trieloff <cctrieloff@apache.org> | 2007-07-05 16:19:05 +0000 |
|---|---|---|
| committer | Carl C. Trieloff <cctrieloff@apache.org> | 2007-07-05 16:19:05 +0000 |
| commit | a48c9eddce4cbc56521fca7fd64582d9dafe1d40 (patch) | |
| tree | 923b6677edb1754a4a9a89c5ff0b9e2a8cc28439 /cpp/src/qpid/broker/TopicExchange.h | |
| parent | 18fc5427470dbe4bfd0e9927beb7b0cc5fe01bfc (diff) | |
| download | qpid-python-a48c9eddce4cbc56521fca7fd64582d9dafe1d40.tar.gz | |
- Added RW lock
- Updated all exchanges to us RW lock
- Updated all registries to us RW lock
- Still need to do (client, channel, message and queues)
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@553549 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/TopicExchange.h')
| -rw-r--r-- | cpp/src/qpid/broker/TopicExchange.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/TopicExchange.h b/cpp/src/qpid/broker/TopicExchange.h index 4b294de5ae..6536a7c4ce 100644 --- a/cpp/src/qpid/broker/TopicExchange.h +++ b/cpp/src/qpid/broker/TopicExchange.h @@ -74,7 +74,7 @@ class TopicPattern : public Tokens class TopicExchange : public virtual Exchange{ typedef std::map<TopicPattern, Queue::vector> BindingMap; BindingMap bindings; - qpid::sys::Mutex lock; + qpid::sys::RWlock lock; bool isBound(Queue::shared_ptr queue, TopicPattern& pattern); public: |
