summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-09-04 10:06:59 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-09-04 10:06:59 +0000
commitedd35ae3af70075e0d59b6409f6d206c6c08d85b (patch)
tree624f9e24f56cc335537f2200c0f8e05723813f5d /include/inspircd.h
parent2cf32b03206531223d847881d58b452b81d92b77 (diff)
ability to create mutexes (rather than just having one system wide mutex) in the threadengines, allows for migration of m_mysql etc.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10381 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r--include/inspircd.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index 12e22794d..09bf02ba5 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -446,6 +446,10 @@ class CoreExport InspIRCd : public classbase
*/
ThreadEngine* Threads;
+ /** Mutex engine, handles mutexes for threading where required
+ */
+ MutexEngine* Mutexes;
+
/** The thread/class used to read config files in REHASH and on startup
*/
ConfigReaderThread* ConfigThread;