~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.h

  • Committer: Brian Aker
  • Date: 2011-02-03 18:12:09 UTC
  • mfrom: (2134.1.9 timestamp)
  • mto: This revision was merged to the branch mainline in revision 2140.
  • Revision ID: brian@tangent.org-20110203181209-xr7i2079pdmu33hd
Merge in table tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
#include <boost/detail/atomic_count.hpp>
28
28
 
29
 
#include <drizzled/global_buffer.h>
30
 
#include <drizzled/definitions.h>
 
29
#include "drizzled/global_buffer.h"
 
30
#include "drizzled/definitions.h"
31
31
 
32
32
struct passwd;
33
33
 
54
54
extern global_buffer_constraint<uint64_t> global_read_rnd_buffer;
55
55
extern global_buffer_constraint<uint64_t> global_read_buffer;
56
56
 
57
 
extern size_t transaction_message_threshold;
58
 
 
59
57
extern const char * const DRIZZLE_CONFIG_NAME;
60
58
 
61
59
boost::program_options::variables_map &getVariablesMap();
62
60
 
63
61
int init_thread_environment();
64
62
int init_server_components(module::Registry &modules);
65
 
int init_basic_variables(int argc, char **argv);
66
 
int init_remaining_variables(module::Registry &modules);
 
63
int init_common_variables(int argc, char **argv, module::Registry &modules);
67
64
 
68
65
passwd *check_user(const char *user);
69
66
void set_user(const char *user, passwd *user_info_arg);
70
67
void clean_up(bool print_message);
 
68
bool drizzle_rm_tmp_tables();
71
69
 
72
70
} /* namespace drizzled */
73
71