blob: 6ebd6a10ab36a104ed199e4ad9f0bf6afcf3eaf1 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
|
/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2009 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 "threadengines/threadengine_win32.h"
ThreadEngine::ThreadEngine(InspIRCd* Instance)
{
}
void ThreadEngine::Create(Thread* thread)
{
ThreadData* data = new ThreadData;
thread->state = data;
DWORD ThreadId = 0;
data->handle = CreateThread(NULL,0,ThreadEngine::Entry,thread,0,&ThreadId);
if (data->handle == NULL)
{
thread->state = NULL;
delete data;
throw CoreException(std::string("Unable to create new thread: ") + dlerror());
}
}
ThreadEngine::~ThreadEngine()
{
}
DWORD WINAPI ThreadEngine::Entry(void* parameter)
{
Thread* pt = reinterpret_cast<Thread*>(parameter);
pt->Run();
return 0;
}
void ThreadData::FreeThread(Thread* thread)
{
thread->SetExitFlag();
WaitForSingleObject(handle,INFINITE);
}
|