aboutsummaryrefslogtreecommitdiffstats
path: root/src/threadengine.cpp
diff options
context:
space:
mode:
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()
-{
-}