~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/log.h

  • Committer: Brian Aker
  • Date: 2008-07-26 18:39:33 UTC
  • mfrom: (212.1.3 codestyle)
  • Revision ID: brian@tangent.org-20080726183933-hueup0fcy2zs1hug
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
{
42
42
public:
43
43
  TC_LOG_DUMMY() {}
44
 
  int open(const char *opt_name __attribute__((__unused__)))
 
44
  int open(const char *opt_name __attribute__((unused)))
45
45
  { return 0; }
46
46
  void close(void)                          { }
47
 
  int log_xid(THD *thd __attribute__((__unused__)),
48
 
              my_xid xid __attribute__((__unused__)))         { return 1; }
49
 
  void unlog(ulong cookie __attribute__((__unused__)),
50
 
             my_xid xid __attribute__((__unused__)))  { }
 
47
  int log_xid(THD *thd __attribute__((unused)),
 
48
              my_xid xid __attribute__((unused)))         { return 1; }
 
49
  void unlog(ulong cookie __attribute__((unused)),
 
50
             my_xid xid __attribute__((unused)))  { }
51
51
};
52
52
 
53
53
#ifdef HAVE_MMAP