aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/http/http_connection_pool.h
diff options
context:
space:
mode:
Diffstat (limited to 'vbench/src/vbench/http/http_connection_pool.h')
-rw-r--r--vbench/src/vbench/http/http_connection_pool.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/vbench/src/vbench/http/http_connection_pool.h b/vbench/src/vbench/http/http_connection_pool.h
index 5dd9eb6361c..f5c279e7efe 100644
--- a/vbench/src/vbench/http/http_connection_pool.h
+++ b/vbench/src/vbench/http/http_connection_pool.h
@@ -5,7 +5,6 @@
#include "http_connection.h"
#include <vbench/core/timer.h>
#include <vespa/vespalib/util/arrayqueue.hpp>
-#include <vespa/vespalib/util/sync.h>
#include <map>
namespace vbench {
@@ -22,7 +21,7 @@ private:
typedef std::map<ServerSpec, size_t> Map;
using CryptoEngine = vespalib::CryptoEngine;
- vespalib::Lock _lock;
+ std::mutex _lock;
Map _map;
std::vector<Queue> _store;
CryptoEngine::SP _crypto;