1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 18:06:36 +02:00

Split db_mysql_live into two modules so other modules can make use of the asynchronous command interface

This commit is contained in:
Adam
2011-02-17 14:31:21 -05:00
parent 18bd33f9a4
commit 536ea2189a
8 changed files with 277 additions and 172 deletions
+3 -3
View File
@@ -20,7 +20,7 @@ void ThreadEngine::Process()
/** Threads constructor
*/
Thread::Thread() : Exit(false)
Thread::Thread() : exit(false)
{
threadEngine.threads.push_back(this);
}
@@ -41,7 +41,7 @@ Thread::~Thread()
*/
void Thread::SetExitState()
{
Exit = true;
exit = true;
}
/** Returns the exit state of the thread
@@ -49,7 +49,7 @@ void Thread::SetExitState()
*/
bool Thread::GetExitState() const
{
return Exit;
return exit;
}
/** Called to run the thread, should be overloaded