~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/loader.cc

  • Committer: Stewart Smith
  • Date: 2011-01-14 05:09:04 UTC
  • mto: (2086.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: stewart@flamingspork.com-20110114050904-a98kswwpqnpl413s
add a bit of a note on how variables docs should be expanded

Show diffs side-by-side

added added

removed removed

Lines of Context:
141
141
static void unlock_variables(Session *session, drizzle_system_variables *vars);
142
142
static void cleanup_variables(drizzle_system_variables *vars);
143
143
 
144
 
/* declared in set_var.cc */
145
 
extern sys_var *intern_find_sys_var(const char *str, uint32_t length, bool no_error);
146
 
 
147
144
 
148
145
/****************************************************************************
149
146
  Plugin support code
373
370
  /*
374
371
    Now we initialize all remaining plugins
375
372
  */
376
 
  std::map<std::string, module::Module *>::const_iterator modules=
 
373
  module::Registry::ModuleMap::const_iterator modules=
377
374
    registry.getModulesMap().begin();
378
375
    
379
376
  while (modules != registry.getModulesMap().end())
391
388
    }
392
389
  }
393
390
 
 
391
 
394
392
  BOOST_FOREACH(plugin::Plugin::map::value_type value, registry.getPluginsMap())
395
393
  {
396
394
    value.second->prime();
500
498
****************************************************************************/
501
499
 
502
500
 
503
 
sys_var *find_sys_var(const char *str, uint32_t length)
504
 
{
505
 
  return intern_find_sys_var(str, length, false);
506
 
}
507
 
 
508
501
 
509
502
void plugin_sessionvar_init(Session *session)
510
503
{