~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_registry.h

  • Committer: Brian Aker
  • Date: 2009-03-27 00:14:08 UTC
  • mto: This revision was merged to the branch mainline in revision 967.
  • Revision ID: brian@tangent.org-20090327001408-n6uxtfiymazy1pgf
Refactor plugin loading to remove mask (one step closer to getting rid of
malloc!)

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
  st_plugin_int *find(const LEX_STRING *name, int type);
32
32
 
33
33
  void add(st_mysql_plugin *handle, st_plugin_int *plugin);
34
 
  void get_mask_list(uint32_t type,
35
 
                     std::vector<st_plugin_int *> &plugins,
36
 
                     uint32_t state_mask);
37
 
 
 
34
  void get_list(uint32_t type, std::vector<st_plugin_int *> &plugins);
 
35
  void get_list(uint32_t type, std::vector<st_plugin_int *> &plugins, bool all);
38
36
};
39
37