]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/threadengine.cpp
Makefile updates: clean up command lines
[user/henk/code/inspircd.git] / src / threadengine.cpp
index e7a316282720571d2a1282b2839fd055aa728fd3..c6128d13295efd0b7ea76ee2012ef2ca293821ed 100644 (file)
 #include "inspircd.h"
 #include "threadengine.h"
 
-
+/** If this thread has a Creator set, call it to
+ * free the thread
+ */
+Thread::~Thread()
+{
+       if (state)
+       {
+               state->FreeThread(this);
+               delete state;
+       }
+}