/* +------------------------------------+ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * * 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. * * --------------------------------------------------- */ /* $Core */ /********* DEFAULTS **********/ /* $ExtraSources: threadengines/threadengine_pthread.cpp */ /* $ExtraObjects: threadengine_pthread.o */ #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; } }