~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_static.h

[patch 003/129] Merge patch for revision 1788 from InnoDB SVN:
revno: 1788
revision-id: svn-v4:16c675df-0fcb-4bc9-8058-dcc011a37293:branches/zip:5670
parent: svn-v4:16c675df-0fcb-4bc9-8058-dcc011a37293:branches/zip:5663
committer: marko
timestamp: Wed 2009-08-12 12:16:37 +0000
message:
  branches/zip: trx_undo_rec_copy(): Add const qualifier to undo_rec.
  This is a non-functional change.
modified:
  include/trx0rec.h              2@16c675df-0fcb-4bc9-8058-dcc011a37293:trunk%2Finclude%2Ftrx0rec.h
  include/trx0rec.ic             2@16c675df-0fcb-4bc9-8058-dcc011a37293:trunk%2Finclude%2Ftrx0rec.ic
  trx/trx0rec.c                  2@16c675df-0fcb-4bc9-8058-dcc011a37293:trunk%2Ftrx%2Ftrx0rec.c
diff:
=== modified file 'include/trx0rec.h'

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
  boundary.
42
42
*/
43
43
 
44
 
class irem
 
44
struct st_irem
45
45
{
46
 
public:
47
 
  irem *next;           /* Linked list of structures       */
48
 
  irem *prev;           /* Other link                      */
 
46
  struct st_irem *next;         /* Linked list of structures       */
 
47
  struct st_irem *prev;         /* Other link                      */
49
48
  char *filename;               /* File in which memory was new'ed */
50
49
  uint32_t linenum;             /* Line number in above file       */
51
50
  uint32_t datasize;            /* Size requested                  */
52
51
  uint32_t SpecialValue;                /* Underrun marker value           */
53
 
 
54
 
  irem():
55
 
    next(NULL),
56
 
        prev(NULL),
57
 
        filename(0),
58
 
        linenum(0),
59
 
        datasize(0),
60
 
        SpecialValue(0)
61
 
  {}
62
52
};
63
53
 
64
54
 
68
58
 
69
59
extern unsigned char    *sf_min_adress,*sf_max_adress;
70
60
extern uint     sf_malloc_count;
71
 
extern class irem *sf_malloc_root;
 
61
extern struct st_irem *sf_malloc_root;
72
62
 
73
63
extern uint64_t query_performance_frequency, query_performance_offset;
74
64