Removing the thread kill functionality.

Wasn't really used and has potential for trouble.
This commit is contained in:
Robin Sommer 2012-07-16 13:39:19 -07:00
parent f73eb3b086
commit 1ca0d970fc
3 changed files with 0 additions and 23 deletions

View file

@ -49,15 +49,6 @@ public:
*/
bool Terminating() const { return terminating; }
/**
* Immediately kills all child threads. It does however not yet join
* them, one still needs to call Terminate() for that.
*
* This method is safe to call from a signal handler, and can in fact
* be called while Terminate() is already in progress.
*/
void KillThreads();
typedef std::list<std::pair<string, MsgThread::Stats> > msg_stats_list;
/**