summaryrefslogtreecommitdiff
path: root/src/mongo/executor/network_interface_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/executor/network_interface_impl.h')
-rw-r--r--src/mongo/executor/network_interface_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/executor/network_interface_impl.h b/src/mongo/executor/network_interface_impl.h
index 1d513ba6308..14a421cc8a9 100644
--- a/src/mongo/executor/network_interface_impl.h
+++ b/src/mongo/executor/network_interface_impl.h
@@ -31,12 +31,12 @@
#include <boost/thread.hpp>
#include <boost/thread/condition_variable.hpp>
-#include <boost/thread/mutex.hpp>
#include <vector>
#include "mongo/client/remote_command_runner_impl.h"
#include "mongo/executor/network_interface.h"
#include "mongo/stdx/list.h"
+#include "mongo/stdx/mutex.h"
namespace mongo {
namespace executor {
@@ -121,7 +121,7 @@ namespace executor {
// Mutex guarding the state of this network interface, except for the remote command
// executor, which has its own concurrency control.
- boost::mutex _mutex;
+ stdx::mutex _mutex;
// Condition signaled to indicate that there is work in the _pending queue.
boost::condition_variable _hasPending;