~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_static.cc

  • Committer: Monty Taylor
  • Date: 2008-12-01 17:53:42 UTC
  • mto: This revision was merged to the branch mainline in revision 637.
  • Revision ID: monty@bitters-20081201175342-hcvfaecqmljhv86g
Fixed Sun Studio warnings in mysys.

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;