~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Stewart Smith
  • Date: 2009-12-02 05:17:48 UTC
  • mto: (1237.1.2 push)
  • mto: This revision was merged to the branch mainline in revision 1238.
  • Revision ID: stewart@flamingspork.com-20091202051748-vbyduoof36eaobul
remove final bits of my_end(MY_CHECK_ERROR) and associated code. Mostly all dead, would do the (now absent) my_print_open_files() which valgrind (or a simple LD_PRELOAD) does for us anyway..

Show diffs side-by-side

added added

removed removed

Lines of Context:
530
530
    usage();
531
531
  clean_up(!opt_help && (exit_code));
532
532
  clean_up_mutexes();
533
 
  my_end(opt_endinfo ? MY_CHECK_ERROR | MY_GIVE_INFO : 0);
 
533
  my_end(opt_endinfo ? MY_GIVE_INFO : 0);
534
534
  exit(exit_code);
535
535
}
536
536
 
1656
1656
  clean_up(1);
1657
1657
  plugin::Registry::shutdown();
1658
1658
  clean_up_mutexes();
1659
 
  my_end(opt_endinfo ? MY_CHECK_ERROR | MY_GIVE_INFO : 0);
 
1659
  my_end(opt_endinfo ? MY_GIVE_INFO : 0);
1660
1660
  return 0;
1661
1661
}
1662
1662