~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_static.h

  • Committer: Stewart Smith
  • Date: 2008-07-25 03:48:54 UTC
  • mfrom: (207.1.1 drizzle)
  • mto: (210.1.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 211.
  • Revision ID: stewart@flamingspork.com-20080725034854-p34pdb0lhpoc159d
merge mainline and update md5 and crc32 plugins to new interface

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
  struct st_irem *next;         /* Linked list of structures       */
45
45
  struct st_irem *prev;         /* Other link                      */
46
46
  char *filename;               /* File in which memory was new'ed */
47
 
  uint32 linenum;               /* Line number in above file       */
48
 
  uint32 datasize;              /* Size requested                  */
49
 
  uint32 SpecialValue;          /* Underrun marker value           */
 
47
  uint32_t linenum;             /* Line number in above file       */
 
48
  uint32_t datasize;            /* Size requested                  */
 
49
  uint32_t SpecialValue;                /* Underrun marker value           */
50
50
};
51
51
 
52
52
 
66
66
 
67
67
extern struct st_my_file_info my_file_info_default[MY_NFILE];
68
68
 
69
 
extern ulonglong query_performance_frequency, query_performance_offset;
 
69
extern uint64_t query_performance_frequency, query_performance_offset;
70
70
 
71
71
extern sigset_t my_signals;             /* signals blocked by mf_brkhant */
72
72
C_MODE_END