~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/myisamdef.h

  • Committer: Brian Aker
  • Date: 2008-07-22 18:31:32 UTC
  • Revision ID: brian@tangent.org-20080722183132-ne2ntl7g7mdf2eez
uint32 -> uin32_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
247
247
  uchar *int_keypos,                    /* Save position for next/previous  */
248
248
        *int_maxpos;                    /*  -""-  */
249
249
  uint  int_nod_flag;                   /*  -""-  */
250
 
  uint32 int_keytree_version;           /*  -""-  */
 
250
  uint32_t int_keytree_version;         /*  -""-  */
251
251
  int (*read_record)(struct st_myisam_info*, my_off_t, uchar*);
252
252
  invalidator_by_filename invalidator;  /* query cache invalidator */
253
253
  ulong this_unique;                    /* uniq filenumber or thread */
430
430
#define MI_DYN_ALIGN_SIZE       4       /* Align blocks on this */
431
431
#define MI_MAX_DYN_HEADER_BYTE  13      /* max header byte for dynamic rows */
432
432
#define MI_MAX_BLOCK_LENGTH     ((((ulong) 1 << 24)-1) & (~ (ulong) (MI_DYN_ALIGN_SIZE-1)))
433
 
#define MI_REC_BUFF_OFFSET      ALIGN_SIZE(MI_DYN_DELETE_BLOCK_HEADER+sizeof(uint32))
 
433
#define MI_REC_BUFF_OFFSET      ALIGN_SIZE(MI_DYN_DELETE_BLOCK_HEADER+sizeof(uint32_t))
434
434
 
435
435
#define MEMMAP_EXTRA_MARGIN     7       /* Write this as a suffix for file */
436
436
 
599
599
        ((((info)->s->options & HA_OPTION_PACK_RECORD) && (buf)) ? \
600
600
        (buf) - MI_REC_BUFF_OFFSET : (buf))
601
601
#define mi_get_rec_buff_len(info,buf)                              \
602
 
        (*((uint32 *)(mi_get_rec_buff_ptr(info,buf))))
 
602
        (*((uint32_t *)(mi_get_rec_buff_ptr(info,buf))))
603
603
 
604
604
extern ulong _mi_rec_unpack(MI_INFO *info,uchar *to,uchar *from,
605
605
                            ulong reclength);