~drizzle-developers/drizzle/elliott-release

« back to all changes in this revision

Viewing changes to plugin/multi_thread/multi_thread.cc

  • Committer: Patrick Crews
  • Date: 2011-02-01 20:33:06 UTC
  • mfrom: (1845.2.288 drizzle)
  • Revision ID: gleebix@gmail.com-20110201203306-mwq2rk0it81tlwxh
Merged Trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
    cout << _("In File: ") << *::boost::get_error_info<boost::throw_file>(ex) << endl;
87
87
    cout << _("On Line: ") << *::boost::get_error_info<boost::throw_line>(ex) << endl;
88
88
 
89
 
    TransactionServices::singleton().sendShutdownEvent(session.get());
 
89
    TransactionServices::singleton().sendShutdownEvent(*session.get());
90
90
  }
91
91
  // @todo remove hard spin by disconnection the session first from the
92
92
  // thread.
220
220
  "One Thread Per Session Scheduler",
221
221
  PLUGIN_LICENSE_GPL,
222
222
  init, /* Plugin Init */
223
 
  NULL,   /* system variables */
 
223
  NULL,   /* depends */
224
224
  init_options    /* config options */
225
225
}
226
226
DRIZZLE_DECLARE_PLUGIN_END;