~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/set_var.cc

  • Committer: Brian Aker
  • Date: 2008-07-13 06:35:46 UTC
  • Revision ID: brian@tangent.org-20080713063546-w1fzi89wzvf6o517
Bool cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1056
1056
static ulonglong fix_unsigned(THD *thd, ulonglong num,
1057
1057
                              const struct my_option *option_limits)
1058
1058
{
1059
 
  my_bool fixed= false;
 
1059
  bool fixed= false;
1060
1060
  ulonglong out= getopt_ull_limit_value(num, option_limits, &fixed);
1061
1061
 
1062
1062
  throw_bounds_warning(thd, fixed, true, option_limits->name, (longlong) num);
1116
1116
 
1117
1117
void sys_var_long_ptr_global::set_default(THD *thd __attribute__((__unused__)), enum_var_type type __attribute__((__unused__)))
1118
1118
{
1119
 
  my_bool not_used;
 
1119
  bool not_used;
1120
1120
  pthread_mutex_lock(guard);
1121
1121
  *value= (ulong) getopt_ull_limit_value((ulong) option_limits->def_value,
1122
1122
                                         option_limits, &not_used);
1140
1140
void sys_var_ulonglong_ptr::set_default(THD *thd __attribute__((__unused__)),
1141
1141
                                        enum_var_type type __attribute__((__unused__)))
1142
1142
{
1143
 
  my_bool not_used;
 
1143
  bool not_used;
1144
1144
  pthread_mutex_lock(&LOCK_global_system_variables);
1145
1145
  *value= getopt_ull_limit_value((ulonglong) option_limits->def_value,
1146
1146
                                 option_limits, &not_used);
1223
1223
 {
1224
1224
   if (type == OPT_GLOBAL)
1225
1225
   {
1226
 
     my_bool not_used;
 
1226
     bool not_used;
1227
1227
     /* We will not come here if option_limits is not set */
1228
1228
     global_system_variables.*offset=
1229
1229
       (ulong) getopt_ull_limit_value((ulong) option_limits->def_value,
1270
1270
{
1271
1271
  if (type == OPT_GLOBAL)
1272
1272
  {
1273
 
    my_bool not_used;
 
1273
    bool not_used;
1274
1274
    /* We will not come here if option_limits is not set */
1275
1275
    pthread_mutex_lock(&LOCK_global_system_variables);
1276
1276
    global_system_variables.*offset=
1322
1322
{
1323
1323
  if (type == OPT_GLOBAL)
1324
1324
  {
1325
 
    my_bool not_used;
 
1325
    bool not_used;
1326
1326
    pthread_mutex_lock(&LOCK_global_system_variables);
1327
1327
    global_system_variables.*offset=
1328
1328
      getopt_ull_limit_value((ulonglong) option_limits->def_value,