~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/multi_thread/multi_thread.cc

  • Committer: Brian Aker
  • Date: 2009-04-17 19:23:54 UTC
  • mfrom: (994.2.2 mordred)
  • Revision ID: brian@gaz-20090417192354-gyr9nvpuj6vrc2tv
Mergig Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
class MultiThreadFactory : public SchedulerFactory
101
101
{
102
102
public:
103
 
  MultiThreadFactory() : SchedulerFactory("multi_thread") {}
 
103
  MultiThreadFactory() : SchedulerFactory("multi_thread")
 
104
  {
 
105
    addAlias("multi-thread");
 
106
  }
 
107
 
104
108
  ~MultiThreadFactory() { if (scheduler != NULL) delete scheduler; }
105
109
  Scheduler *operator() ()
106
110
  {