~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/signal_handler/signal_handler.cc

  • Committer: Brian Aker
  • Date: 2009-04-13 16:22:40 UTC
  • mfrom: (971.1.78 mordred)
  • Revision ID: brian@gaz-20090413162240-ugi3gvhofmcuglzl
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
193
193
}
194
194
 
195
195
 
196
 
static int init(void *)
 
196
static int init(PluginRegistry&)
197
197
{
198
198
  int error;
199
199
  pthread_attr_t thr_attr;
238
238
  This is mainly needed when running with purify, but it's still nice to
239
239
  know that all child threads have died when drizzled exits.
240
240
*/
241
 
static int deinit(void *)
 
241
static int deinit(PluginRegistry&)
242
242
{
243
243
  uint32_t i;
244
244
  /*
261
261
 
262
262
drizzle_declare_plugin(signal_handler)
263
263
{
264
 
  DRIZZLE_DAEMON_PLUGIN,
265
264
  "signal_handler",
266
265
  "0.1",
267
266
  "Brian Aker",