~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/multi_thread/multi_thread.cc

Merged in some naming things.

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
                           N_("Maximum number of user threads available."),
108
108
                           NULL, NULL, 2048, 1, 4096, 0);
109
109
 
110
 
static struct st_mysql_sys_var* system_variables[]= {
 
110
static drizzle_sys_var* system_variables[]= {
111
111
  DRIZZLE_SYSVAR(max_threads),
112
112
  NULL
113
113
};
114
114
 
115
 
drizzle_declare_plugin
 
115
DRIZZLE_DECLARE_PLUGIN
116
116
{
117
117
  "multi_thread",
118
118
  "0.1",
125
125
  system_variables,   /* system variables */
126
126
  NULL    /* config options */
127
127
}
128
 
drizzle_declare_plugin_end;
 
128
DRIZZLE_DECLARE_PLUGIN_END;