~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/logging.h

  • Committer: Brian Aker
  • Date: 2008-10-20 04:28:21 UTC
  • mto: (492.3.21 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: brian@tangent.org-20081020042821-rqqdrccuu8195k3y
Second pass of thd cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
int logging_initializer(st_plugin_int *plugin);
26
26
int logging_finalizer(st_plugin_int *plugin);
27
27
 
28
 
/* there are no parameters other than the thd because logging can
29
 
 * pull everything it needs out of the thd.  If need to add
 
28
/* there are no parameters other than the session because logging can
 
29
 * pull everything it needs out of the session.  If need to add
30
30
 * parameters, look at how errmsg.h and errmsg.cc do it. */
31
31
 
32
 
bool logging_pre_do (Session *thd);
33
 
bool logging_post_do (Session *thd);
 
32
bool logging_pre_do (Session *session);
 
33
bool logging_post_do (Session *session);
34
34
 
35
35
#endif /* DRIZZLED_LOGGING_H */