~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin_registry_impl.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:
35
35
 
36
36
  void add(st_mysql_plugin *handle, st_plugin_int *plugin);
37
37
 
38
 
  void get_mask_list(uint32_t type,
39
 
                     std::vector<st_plugin_int *> &plugins,
40
 
                     uint32_t state_mask);
41
 
 
 
38
  void get_list(uint32_t type, std::vector<st_plugin_int *> &plugins, bool active);
42
39
};