]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/threadengine.cpp
ThreadEngine: remove excessive mutex use on thread creation
[user/henk/code/inspircd.git] / src / threadengine.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $Core */
15
16 /*********        DEFAULTS       **********/
17 /* $ExtraSources: threadengines/threadengine_pthread.cpp */
18 /* $ExtraObjects: threadengine_pthread.o */
19
20 #include "inspircd.h"
21 #include "threadengine.h"
22
23 ThreadEngine::ThreadEngine(InspIRCd* Instance) : ServerInstance(Instance)
24 {
25 }
26
27 ThreadEngine::~ThreadEngine()
28 {
29 }
30
31 Mutex::Mutex()
32 {
33 }