~clint-fewbar/drizzle/regex-policy-cache-limiter

« back to all changes in this revision

Viewing changes to plugin/slave/queue_thread.cc

  • Committer: Clint Byrum
  • Date: 2012-03-15 18:05:43 UTC
  • mfrom: (2224.1.302 workspace)
  • Revision ID: clint@ubuntu.com-20120315180543-9jxxm4q10k3np2ws
merging with latest trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
using namespace drizzled;
27
27
 
28
 
namespace slave
29
 
{
 
28
namespace slave {
30
29
 
31
 
void QueueThread::run(void)
 
30
void QueueThread::run()
32
31
{
33
32
  boost::posix_time::seconds duration(getSleepInterval());
34
33
 
35
34
  /* thread setup needed to do things like create a Session */
36
35
  internal::my_thread_init();
37
 
  boost::this_thread::at_thread_exit(&internal::my_thread_end);
38
36
 
39
37
  if (not init())
40
38
    return;