blob: 4ea95bcf0a5aaac29ad1e57968e747c142f0ba77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/* +------------------------------------+
* | 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.
*
* ---------------------------------------------------
*/
/* $Core */
/********* DEFAULTS **********/
/* $ExtraSources: threadengines/threadengine_pthread.cpp */
/* $ExtraObjects: threadengine_pthread.o */
#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()
{
}
|