aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ipc/IpcServer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/ipc/IpcServer.h')
-rw-r--r--src/lib/ipc/IpcServer.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/ipc/IpcServer.h b/src/lib/ipc/IpcServer.h
index d9bbe3e..179bad8 100644
--- a/src/lib/ipc/IpcServer.h
+++ b/src/lib/ipc/IpcServer.h
@@ -25,6 +25,7 @@
#include "base/EventTypes.h"
#include <list>
+#include <mutex>
class Event;
class IpcClientProxy;
@@ -79,7 +80,7 @@ private:
TCPListenSocket* m_socket;
NetworkAddress m_address;
ClientList m_clients;
- ArchMutex m_clientsMutex;
+ mutable std::mutex m_clientsMutex;
#ifdef TEST_ENV
public: