summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-09-04 10:50:53 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-09-04 10:50:53 +0000
commit2a0c6c52d045fe3a6dda9bf0209be250fa486d6b (patch)
tree470e546bf9438113983c488ab5f223050e76490f /src
parent7c42793a1edc382770de33327ec3684b9f4ac04b (diff)
initialise mutexengine
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10384 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/inspircd.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 3bebbf30d..875755ed7 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -458,6 +458,7 @@ InspIRCd::InspIRCd(int argc, char** argv)
ThreadEngineFactory* tef = new ThreadEngineFactory();
this->Threads = tef->Create(this);
delete tef;
+ this->Mutexes = new MutexEngine(this);
/* Default implementation does nothing */
this->PI = new ProtocolInterface(this);