diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-09-04 11:03:58 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-09-04 11:03:58 +0000 |
commit | bc770c5388bc5517be85afb43255cb9f8ead0d33 (patch) | |
tree | 2047bbe65b6c4d2e9707ed59577d5f2de3eaca4e /include/threadengines/threadengine_pthread.h | |
parent | 2a0c6c52d045fe3a6dda9bf0209be250fa486d6b (diff) |
MutexEngine -> MutexFactory, more sensible name
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10385 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/threadengines/threadengine_pthread.h')
-rw-r--r-- | include/threadengines/threadengine_pthread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/threadengines/threadengine_pthread.h b/include/threadengines/threadengine_pthread.h index e3f8b0860..76548c252 100644 --- a/include/threadengines/threadengine_pthread.h +++ b/include/threadengines/threadengine_pthread.h @@ -64,12 +64,12 @@ class CoreExport PosixMutex : public Mutex ~PosixMutex(); }; -class CoreExport MutexEngine : public Extensible +class CoreExport MutexFactory : public Extensible { protected: InspIRCd* ServerInstance; public: - MutexEngine(InspIRCd* Instance); + MutexFactory(InspIRCd* Instance); Mutex* CreateMutex(); }; |