From 536ea2189ae1ff8bf05583ed03fac86797616ac9 Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 17 Feb 2011 14:31:21 -0500 Subject: Split db_mysql_live into two modules so other modules can make use of the asynchronous command interface --- src/threadengine.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/threadengine.cpp') diff --git a/src/threadengine.cpp b/src/threadengine.cpp index 0ac049c38..c2aa3da20 100644 --- a/src/threadengine.cpp +++ b/src/threadengine.cpp @@ -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 -- cgit