~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/multi_thread/multi_thread.cc

  • Committer: Monty Taylor
  • Date: 2009-03-30 18:17:18 UTC
  • mto: (971.1.10 mordred)
  • mto: This revision was merged to the branch mainline in revision 970.
  • Revision ID: mordred@inaugust.com-20090330181718-jyt04pyzcvxs76iw
Replacd use of tbb:: namespace with drizzled::

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
class Multi_thread_scheduler: public Scheduler
32
32
{
33
 
  tbb::atomic<uint32_t> thread_count;
 
33
  drizzled::atomic<uint32_t> thread_count;
34
34
  pthread_attr_t multi_thread_attrib;
35
35
 
36
36
public: