~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/multi_thread/multi_thread.cc

  • Committer: Monty Taylor
  • Date: 2009-12-21 03:44:51 UTC
  • mto: (1253.2.3 out-of-tree)
  • mto: This revision was merged to the branch mainline in revision 1250.
  • Revision ID: mordred@inaugust.com-20091221034451-hmztoep4qbaqne8w
Trims more out of server_includes.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
void MultiThreadScheduler::killSessionNow(Session *session)
67
67
{
68
68
  /* Locks LOCK_thread_count and deletes session */
69
 
  unlink_session(session);
 
69
  Session::unlink(session);
70
70
  thread_count--;
71
71
  my_thread_end();
72
72
  pthread_exit(0);