~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/multi_thread/multi_thread.cc

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
  /* Locks LOCK_thread_count and deletes session */
70
70
  Session::unlink(session);
71
71
  thread_count.decrement();
72
 
  my_thread_end();
 
72
  internal::my_thread_end();
73
73
  pthread_exit(0);
74
74
  /* We should never reach this point. */
75
75
}
108
108
                           N_("Maximum number of user threads available."),
109
109
                           NULL, NULL, 2048, 1, 4096, 0);
110
110
 
111
 
static drizzle_sys_var* system_variables[]= {
 
111
static drizzle_sys_var* sys_variables[]= {
112
112
  DRIZZLE_SYSVAR(max_threads),
113
113
  NULL
114
114
};
124
124
  init, /* Plugin Init */
125
125
  deinit, /* Plugin Deinit */
126
126
  NULL,   /* status variables */
127
 
  system_variables,   /* system variables */
 
127
  sys_variables,   /* system variables */
128
128
  NULL    /* config options */
129
129
}
130
130
DRIZZLE_DECLARE_PLUGIN_END;