~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-10-11 17:31:45 UTC
  • Revision ID: brian@tangent.org-20081011173145-qzws50bp0npuihzp
Removed dead bootstrap variable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1249
1249
extern "C" RETSIGTYPE end_thread_signal(int sig __attribute__((unused)))
1250
1250
{
1251
1251
  THD *thd=current_thd;
1252
 
  if (thd && ! thd->bootstrap)
 
1252
  if (thd)
1253
1253
  {
1254
1254
    statistic_increment(killed_threads, &LOCK_status);
1255
1255
    thread_scheduler.end_thread(thd,0);         /* purecov: inspected */
2652
2652
  error_handler_hook= my_message_sql;
2653
2653
  start_signal_handler();                               // Creates pidfile
2654
2654
 
2655
 
  if (mysql_rm_tmp_tables() || my_tz_init((THD *)0, default_tz_name, false))
 
2655
  if (mysql_rm_tmp_tables() || my_tz_init((THD *)0, default_tz_name))
2656
2656
  {
2657
2657
    abort_loop=1;
2658
2658
    select_thread_in_use=0;