aboutsummaryrefslogtreecommitdiffstats
path: root/src/threadengine.cpp
diff options
context:
space:
mode:
authorGravatar Daniel De Graaf2010-08-24 21:42:47 -0400
committerGravatar Daniel De Graaf2010-08-24 21:42:47 -0400
commit468bbfda34453f50b533701c8ef50ad22def092a (patch)
treef9207bbfb71919365b22c6dddcfbbaabed478723 /src/threadengine.cpp
parentPrevent using /TMODE to register channels over the limit (diff)
Replace thread engine with job engine
Diffstat (limited to 'src/threadengine.cpp')
-rw-r--r--src/threadengine.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/threadengine.cpp b/src/threadengine.cpp
deleted file mode 100644
index f54698e5b..000000000
--- a/src/threadengine.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-/* +------------------------------------+
- * | Inspire Internet Relay Chat Daemon |
- * +------------------------------------+
- *
- * InspIRCd: (C) 2002-2010 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"
-
-void Thread::SetExitFlag()
-{
- ExitFlag = true;
-}
-
-void Thread::join()
-{
- state->FreeThread(this);
- delete state;
- state = 0;
-}
-
-/** If this thread has a Creator set, call it to
- * free the thread
- */
-Thread::~Thread()
-{
-}