~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/my_static.h

  • Committer: tdavies
  • Date: 2010-10-10 05:31:41 UTC
  • mto: (1827.1.3 trunk-drizzle)
  • mto: This revision was merged to the branch mainline in revision 1829.
  • Revision ID: tdavies@molly-20101010053141-7rbcb8fe8a6xxrn8
Bug:621861 Changed C structs to C++ class in the following files: filesort.cc, filesort_info.h, sql_sort.h, table.h. removed the '_st' from the name of some of the classes. For more detail of changes made read the merge proposal notes.

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