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 | |
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')
-rw-r--r-- | include/threadengines/threadengine_pthread.h | 4 | ||||
-rw-r--r-- | include/threadengines/threadengine_win32.h | 4 |
2 files changed, 4 insertions, 4 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(); }; diff --git a/include/threadengines/threadengine_win32.h b/include/threadengines/threadengine_win32.h index e19f24ca0..9179d1fcf 100644 --- a/include/threadengines/threadengine_win32.h +++ b/include/threadengines/threadengine_win32.h @@ -63,12 +63,12 @@ class CoreExport Win32Mutex : public Mutex ~Win32Mutex(); }; -class CoreExport MutexEngine : public Extensible +class CoreExport MutexFactory : public Extensible { protected: InspIRCd* ServerInstance; public: - MutexEngine(InspIRCd* Instance); + MutexFactory(InspIRCd* Instance); virtual Mutex* CreateMutex(); }; |