]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/threadengines/threadengine_pthread.h
Remove SpanningTreeProtocolInterface::SendOperNotice - it was translated to a SendSNO...
[user/henk/code/inspircd.git] / include / threadengines / threadengine_pthread.h
index e8f7a4087f89a21f6bad2fe18364d1614206964e..602484b4e548f4ae8e88dcc330bc42197d7251dc 100644 (file)
@@ -38,10 +38,16 @@ class CoreExport PThreadEngine : public ThreadEngine
        void Create(Thread* thread_to_init);
 
        void FreeThread(Thread* thread);
+
+       const std::string GetName()
+       {
+               return "posix-thread";
+       }
 };
 
-class ThreadEngineFactory : public classbase
+class CoreExport ThreadEngineFactory : public classbase
 {
+ public:
        ThreadEngine* Create(InspIRCd* ServerInstance)
        {
                return new PThreadEngine(ServerInstance);