~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/main.cc

  • Committer: Monty Taylor
  • Date: 2010-05-15 18:23:34 UTC
  • mto: (1530.6.1)
  • mto: This revision was merged to the branch mainline in revision 1556.
  • Revision ID: mordred@inaugust.com-20100515182334-bgbmwij0mioklajx
Renamed classes that were in drizzled::plugin but which were not meant
for consumption by plugin authors to drizzled::module - since they
really have to do with plugin module loading. This way when we
look in drizzled/plugin, we see nothing but plugin interfaces. Win.

Show diffs side-by-side

added added

removed removed

Lines of Context:
200
200
  textdomain("drizzle");
201
201
#endif
202
202
 
203
 
  plugin::Registry &plugins= plugin::Registry::singleton();
 
203
  module::Registry &modules= module::Registry::singleton();
204
204
  plugin::Client *client;
205
205
  Session *session;
206
206
 
244
244
    server_id= 1;
245
245
  }
246
246
 
247
 
  if (init_server_components(plugins))
 
247
  if (init_server_components(modules))
248
248
    unireg_abort(1);
249
249
 
250
250
  /**
320
320
  (void) pthread_mutex_unlock(&LOCK_thread_count);
321
321
 
322
322
  clean_up(1);
323
 
  plugin::Registry::shutdown();
 
323
  module::Registry::shutdown();
324
324
  clean_up_mutexes();
325
325
  internal::my_end();
326
326
  return 0;