~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.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:
54
54
#include "drizzled/charset.h"
55
55
#include "plugin/myisam/myisam.h"
56
56
#include "drizzled/drizzled.h"
 
57
#include "drizzled/module/registry.h"
57
58
 
58
59
#include <google/protobuf/stubs/common.h>
59
60
 
501
502
  TableShare::cacheStop();
502
503
  set_var_free();
503
504
  free_charsets();
504
 
  plugin::Registry &plugins= plugin::Registry::singleton();
505
 
  plugin_shutdown(plugins);
 
505
  module::Registry &modules= module::Registry::singleton();
 
506
  modules.shutdownModules();
506
507
  xid_cache_free();
507
508
  free_status_vars();
508
509
  if (defaults_argv)
924
925
}
925
926
 
926
927
 
927
 
int init_server_components(plugin::Registry &plugins)
 
928
int init_server_components(module::Registry &plugins)
928
929
{
929
930
  /*
930
931
    We need to call each of these following functions to ensure that