remove duplicate locks - handled in pool.hpp already (mapnik held up fine this way in the wms benchmarks)

This commit is contained in:
Dane Springmeyer 2010-09-14 17:08:18 +00:00
parent 73fe7fda4a
commit fbd0e4954c

View file

@ -106,7 +106,7 @@ public:
bool registerPool(const ConnectionCreator<Connection>& creator,unsigned initialSize,unsigned maxSize)
{
#ifdef MAPNIK_THREADSAFE
mutex::scoped_lock lock(mutex_);
//mutex::scoped_lock lock(mutex_);
#endif
if (pools_.find(creator.id())==pools_.end())
{
@ -121,7 +121,7 @@ public:
boost::shared_ptr<PoolType> getPool(std::string const& key)
{
#ifdef MAPNIK_THREADSAFE
mutex::scoped_lock lock(mutex_);
//mutex::scoped_lock lock(mutex_);
#endif
ContType::const_iterator itr=pools_.find(key);
if (itr!=pools_.end())
@ -135,7 +135,7 @@ public:
HolderType get(std::string const& key)
{
#ifdef MAPNIK_THREADSAFE
mutex::scoped_lock lock(mutex_);
//mutex::scoped_lock lock(mutex_);
#endif
ContType::const_iterator itr=pools_.find(key);
if (itr!=pools_.end())