~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/log.h

  • Committer: Lee
  • Date: 2008-12-30 20:30:32 UTC
  • mfrom: (755 testable)
  • mto: (758.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 759.
  • Revision ID: lbieber@lbieber-desktop-20081230203032-efgw9i13f37632qz
merge with latest from the trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
363
363
 
364
364
File open_binlog(IO_CACHE *log, const char *log_file_name,
365
365
                 const char **errmsg);
366
 
bool flush_error_log(void);
367
366
 
368
367
class Log_event_handler
369
368
{
379
378
 
380
379
extern TYPELIB binlog_format_typelib;
381
380
 
382
 
void sql_print_error(const char *format, ...) __attribute__((format(printf, 1, 2)));
383
 
void sql_print_warning(const char *format, ...) __attribute__((format(printf, 1, 2)));
384
 
void sql_print_information(const char *format, ...)
385
 
  __attribute__((format(printf, 1, 2)));
386
 
typedef void (*sql_print_message_func)(const char *format, ...)
387
 
  __attribute__((format(printf, 1, 2)));
388
 
extern sql_print_message_func sql_print_message_handlers[];
389
 
 
390
 
void sql_perror(const char *message);
391
 
 
392
 
 
393
381
#endif /* DRIZZLE_SERVER_LOG_H */