~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/drizzled.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:
491
491
pthread_handler_t signal_hand(void *arg);
492
492
static void mysql_init_variables(void);
493
493
static void get_options(int *argc,char **argv);
494
 
extern "C" my_bool mysqld_get_one_option(int, const struct my_option *, char *);
 
494
extern "C" bool mysqld_get_one_option(int, const struct my_option *, char *);
495
495
static void set_server_version(void);
496
496
static int init_thread_environment();
497
497
static char *get_relative_path(const char *path);
4430
4430
}
4431
4431
 
4432
4432
 
4433
 
my_bool
 
4433
bool
4434
4434
mysqld_get_one_option(int optid,
4435
4435
                      const struct my_option *opt __attribute__((unused)),
4436
4436
                      char *argument)