~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/scheduler.cc

Added code necessary for building plugins dynamically.
Merged in changes from lifeless to allow autoreconf to work.
Touching plugin.ini files now triggers a rebuid - so config/autorun.sh is no
longer required to be run after touching those.
Removed the duplicate plugin names - also removed the issue that getting them
different would silently fail weirdly later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
    return true;
63
63
  }
64
64
 
 
65
  sched->deactivate();
65
66
  all_schedulers.push_back(sched);
66
67
 
67
68
  return false;
84
85
 
85
86
  if (iter != all_schedulers.end())
86
87
  {
 
88
    if (scheduler != NULL)
 
89
      scheduler->deactivate();
87
90
    scheduler= *iter;
88
 
 
 
91
    scheduler->activate();
89
92
    return false;
90
93
  }
91
94