~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/single_thread/single_thread.cc

Merged up with build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
  return 0;
40
40
}
41
41
 
42
 
static struct st_mysql_sys_var* system_variables[]= {
 
42
static drizzle_sys_var* system_variables[]= {
43
43
  NULL
44
44
};
45
45
 
46
 
drizzle_declare_plugin
 
46
DRIZZLE_DECLARE_PLUGIN
47
47
{
48
48
  "single_thread",
49
49
  "0.1",
56
56
  system_variables,   /* system variables */
57
57
  NULL    /* config options */
58
58
}
59
 
drizzle_declare_plugin_end;
 
59
DRIZZLE_DECLARE_PLUGIN_END;