~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/logging.cc

  • Committer: Brian Aker
  • Date: 2008-10-20 03:40:03 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-20081020034003-t2dcnl0ayr2ymm8k
THD -> Session rename

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
}
70
70
 
71
71
/* This gets called by plugin_foreach once for each loaded logging plugin */
72
 
static bool logging_pre_iterate (THD *thd, plugin_ref plugin,
 
72
static bool logging_pre_iterate (Session *thd, plugin_ref plugin,
73
73
                                 void *p __attribute__ ((__unused__)))
74
74
{
75
75
  logging_t *l= plugin_data(plugin, logging_t *);
91
91
 
92
92
/* This is the logging_pre_do entry point.
93
93
   This gets called by the rest of the Drizzle server code */
94
 
bool logging_pre_do (THD *thd)
 
94
bool logging_pre_do (Session *thd)
95
95
{
96
96
  bool foreach_rv;
97
97
 
103
103
}
104
104
 
105
105
/* This gets called by plugin_foreach once for each loaded logging plugin */
106
 
static bool logging_post_iterate (THD *thd, plugin_ref plugin, 
 
106
static bool logging_post_iterate (Session *thd, plugin_ref plugin, 
107
107
                                  void *p __attribute__ ((__unused__)))
108
108
{
109
109
  logging_t *l= plugin_data(plugin, logging_t *);
124
124
 
125
125
/* This is the logging_pre_do entry point.
126
126
   This gets called by the rest of the Drizzle server code */
127
 
bool logging_post_do (THD *thd)
 
127
bool logging_post_do (Session *thd)
128
128
{
129
129
  bool foreach_rv;
130
130