From 11c08b9aed1792705e5d82b343fae6ce56910338 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 10 Feb 2008 14:50:38 +0000 Subject: Each Thread class must have its own thread handle, duh. Someone take away my craqpipe NOW. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8876 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/threadengine.h | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) (limited to 'include/threadengine.h') diff --git a/include/threadengine.h b/include/threadengine.h index 7d27b867a..0f729a962 100644 --- a/include/threadengine.h +++ b/include/threadengine.h @@ -21,14 +21,8 @@ #include "base.h" class InspIRCd; +class Thread; -class CoreExport Thread : public Extensible -{ - public: - Thread() { }; - virtual ~Thread() { }; - virtual void Run() = 0; -}; class CoreExport ThreadEngine : public Extensible { @@ -48,6 +42,30 @@ class CoreExport ThreadEngine : public Extensible virtual void Run() = 0; virtual void Create(Thread* thread_to_init) = 0; + + virtual void FreeThread(Thread* thread) = 0; }; +class CoreExport Thread : public Extensible +{ + public: + + ThreadEngine* Creator; + + Thread() : Creator(NULL) + { + } + + virtual ~Thread() + { + if (Creator) + Creator->FreeThread(this); + } + + virtual void Run() = 0; +}; + + + #endif + -- cgit v1.2.3