]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/threadengine.cpp
Add IP address conversion utility functions, irc::sockets::aptosa and irc::sockets...
[user/henk/code/inspircd.git] / src / threadengine.cpp
index a6e17afa090424a1567ca6c2fde14572041b2faf..c6128d13295efd0b7ea76ee2012ef2ca293821ed 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *         the file COPYING for details.
 #include "inspircd.h"
 #include "threadengine.h"
 
-ThreadEngine::ThreadEngine(InspIRCd* Instance) : ServerInstance(Instance)
-{
-}
-
-ThreadEngine::~ThreadEngine()
+/** If this thread has a Creator set, call it to
+ * free the thread
+ */
+Thread::~Thread()
 {
+       if (state)
+       {
+               state->FreeThread(this);
+               delete state;
+       }
 }
-