~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_static.cc

  • Committer: Brian Aker
  • Date: 2008-12-02 16:33:43 UTC
  • mfrom: (632.1.19 devel)
  • Revision ID: brian@tangent.org-20081202163343-007ifg17p0lvjga7
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
uint32_t my_time_to_wait_for_lock=2;    /* In seconds */
74
74
 
75
75
        /* from errors.c */
76
 
void (*my_abort_hook)(int) = (void(*)(int)) exit;
77
 
void (*error_handler_hook)(uint32_t error,const char *str,myf MyFlags)=
78
 
    my_message_no_curses;
79
 
void (*fatal_error_handler_hook)(uint32_t error,const char *str,myf MyFlags)=
80
 
  my_message_no_curses;
 
76
void_ptr_int_func my_abort_hook= (void_ptr_int_func)exit;
 
77
error_handler_func error_handler_hook= my_message_no_curses;
 
78
error_handler_func fatal_error_handler_hook= my_message_no_curses;
81
79
 
82
80
        /* How to disable options */
83
81
bool my_disable_async_io=0;