~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/multi_thread/multi_thread.cc

  • Committer: Stewart Smith
  • Date: 2011-01-14 05:21:52 UTC
  • mto: (2086.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: stewart@flamingspork.com-20110114052152-xnvlbrzvy3bx1ucd
add some FIXME to analyze docs.

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.
106
106
 
107
107
  if (err != 0)
108
108
  {
109
 
    errmsg_printf(error::ERROR, _("Unable to get thread stack size"));
 
109
    errmsg_printf(ERRMSG_LVL_ERROR, _("Unable to get thread stack size\n"));
110
110
    my_thread_stack_size= 524288; // At the time of the writing of this code, this was OSX's
111
111
  }
112
112
 
220
220
  "One Thread Per Session Scheduler",
221
221
  PLUGIN_LICENSE_GPL,
222
222
  init, /* Plugin Init */
223
 
  NULL,   /* depends */
 
223
  NULL,   /* system variables */
224
224
  init_options    /* config options */
225
225
}
226
226
DRIZZLE_DECLARE_PLUGIN_END;