~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.h

  • Committer: Brian Aker
  • Date: 2011-08-16 01:07:54 UTC
  • mfrom: (2363.1.8 drizzle-trunk)
  • mto: This revision was merged to the branch mainline in revision 2399.
  • Revision ID: brian@tangent.org-20110816010754-14sxcxr7r9jczh6a
Fixes for --help work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
extern bool volatile select_thread_in_use;
37
37
extern bool volatile abort_loop;
38
38
extern bool volatile ready_to_exit;
39
 
extern bool opt_help;
40
 
extern bool opt_help_extended;
41
39
extern passwd *user_info;
42
40
 
43
41
extern global_buffer_constraint<uint64_t> global_sort_buffer;
53
51
 
54
52
int init_thread_environment();
55
53
void init_server_components(module::Registry&);
56
 
int init_basic_variables(int argc, char **argv);
57
 
int init_remaining_variables(module::Registry&);
 
54
bool init_variables_before_daemonizing(int argc, char **argv);
 
55
bool init_variables_after_daemonizing(module::Registry&);
58
56
 
59
57
passwd *check_user(const char *user);
60
58
void set_user(const char *user, passwd *user_info_arg);
61
59
void clean_up(bool print_message);
 
60
bool was_help_requested();
62
61
 
63
62
} /* namespace drizzled */
64
63