~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/single_thread/single_thread.cc

  • Committer: Monty Taylor
  • Date: 2009-03-16 16:59:41 UTC
  • mfrom: (937.1.2 drizzle)
  • mto: This revision was merged to the branch mainline in revision 938.
  • Revision ID: mordred@inaugust.com-20090316165941-u3yoldxvq88s78dd
MergedĀ Eric.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
 
54
54
static bool end_thread(Session *session, bool)
55
55
{
56
 
  unlink_session(session);   /* locks LOCK_thread_count and deletes session */
 
56
  unlink_session(session, true);   /* locks LOCK_thread_count and deletes session */
57
57
 
58
58
  return true;                                     // Abort handle_one_connection
59
59
}