From 4149afd45d2c0b9f464d1b4434f7bdaa61873d44 Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 9 May 2010 17:50:53 -0400 Subject: Changed threadengine to delete threads after Joining them, so the whole thread exists when being joined and so its safe to call non-threadsafe functions in the destructor --- src/threadengine.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src/threadengine.cpp') diff --git a/src/threadengine.cpp b/src/threadengine.cpp index f7e924fb6..ea652e1f2 100644 --- a/src/threadengine.cpp +++ b/src/threadengine.cpp @@ -12,7 +12,6 @@ Thread::Thread() : Exit(false) */ Thread::~Thread() { - Join(); } /** Sets the exit state as true informing the thread we want it to shut down -- cgit