diff options
| author | 2008-09-04 10:06:59 +0000 | |
|---|---|---|
| committer | 2008-09-04 10:06:59 +0000 | |
| commit | edd35ae3af70075e0d59b6409f6d206c6c08d85b (patch) | |
| tree | 624f9e24f56cc335537f2200c0f8e05723813f5d /include/threadengine.h | |
| parent | fix a warning. I am on a warning zapping crusade today. (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/threadengine.h')
| -rw-r--r-- | include/threadengine.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/threadengine.h b/include/threadengine.h index 59d425481..4e0db0bfc 100644 --- a/include/threadengine.h +++ b/include/threadengine.h @@ -82,6 +82,16 @@ class CoreExport ThreadEngine : public Extensible } }; +class CoreExport Mutex : public Extensible +{ + protected: + InspIRCd* ServerInstance; + public: + Mutex(InspIRCd* Instance); + virtual void Enable(bool enable) = 0; + ~Mutex() { } +}; + /** Derive from this class to implement your own threaded sections of * code. */ |
