~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/scheduling.h

  • Committer: Brian Aker
  • Date: 2009-01-24 04:31:39 UTC
  • Revision ID: brian@gir-3.local-20090124043139-5cu9wjefszrnyhe0
Refactored all current scheduler to be behind scheduler plugin api.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
int scheduling_initializer (st_plugin_int *plugin);
26
26
int scheduling_finalizer (st_plugin_int *plugin);
27
27
 
28
 
/* todo, fill in this API */
29
 
/* these are the functions called by the rest of the drizzle server
30
 
   to do whatever this plugin does. */
31
 
bool scheduling_do1 (Session *session, void *parm1, void *parm2);
32
 
bool scheduling_do2 (Session *session, void *parm3, void *parm4);
33
 
 
34
28
#endif /* DRIZZLED_SCHEDULING_H */