~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_packrec.c

  • Committer: Brian Aker
  • Date: 2008-08-09 06:20:11 UTC
  • Revision ID: brian@tangent.org-20080809062011-vkyz8gszh6jpk3ga
Converted myisam away from my_bool

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
 
130
130
        /* Read all packed info, allocate memory and fix field structs */
131
131
 
132
 
my_bool _mi_read_pack_info(MI_INFO *info, bool fix_keys)
 
132
bool _mi_read_pack_info(MI_INFO *info, bool fix_keys)
133
133
{
134
134
  File file;
135
135
  int diff_length;
1246
1246
 
1247
1247
int _mi_read_rnd_pack_record(MI_INFO *info, uchar *buf,
1248
1248
                             register my_off_t filepos,
1249
 
                             my_bool skip_deleted_blocks)
 
1249
                             bool skip_deleted_blocks)
1250
1250
{
1251
1251
  uint b_type;
1252
1252
  MI_BLOCK_INFO block_info;
1427
1427
#ifdef HAVE_MMAP
1428
1428
 
1429
1429
static int _mi_read_mempack_record(MI_INFO *info,my_off_t filepos,uchar *buf);
1430
 
static int _mi_read_rnd_mempack_record(MI_INFO*, uchar *,my_off_t, my_bool);
 
1430
static int _mi_read_rnd_mempack_record(MI_INFO*, uchar *,my_off_t, bool);
1431
1431
 
1432
 
my_bool _mi_memmap_file(MI_INFO *info)
 
1432
bool _mi_memmap_file(MI_INFO *info)
1433
1433
{
1434
1434
  MYISAM_SHARE *share=info->s;
1435
1435
 
1500
1500
/*ARGSUSED*/
1501
1501
static int _mi_read_rnd_mempack_record(MI_INFO *info, uchar *buf,
1502
1502
                                       register my_off_t filepos,
1503
 
                                       my_bool skip_deleted_blocks
 
1503
                                       bool skip_deleted_blocks
1504
1504
                                       __attribute__((unused)))
1505
1505
{
1506
1506
  MI_BLOCK_INFO block_info;