~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_iocache.c

  • Committer: Brian Aker
  • Date: 2008-07-13 18:27:33 UTC
  • Revision ID: brian@tangent.org-20080713182733-3u1et5nrmofi8a8n
my_bool cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
317
317
  in the cache, we are reusing this memory without flushing it to disk.
318
318
*/
319
319
 
320
 
my_bool reinit_io_cache(IO_CACHE *info, enum cache_type type,
 
320
bool reinit_io_cache(IO_CACHE *info, enum cache_type type,
321
321
                        my_off_t seek_offset,
322
322
                        pbool use_async_io __attribute__((unused)),
323
323
                        pbool clear_cache)
1672
1672
int my_b_flush_io_cache(IO_CACHE *info, int need_append_buffer_lock)
1673
1673
{
1674
1674
  size_t length;
1675
 
  my_bool append_cache;
 
1675
  bool append_cache;
1676
1676
  my_off_t pos_in_file;
1677
1677
  DBUG_ENTER("my_b_flush_io_cache");
1678
1678
  DBUG_PRINT("enter", ("cache: 0x%lx", (long) info));