~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_iocache.c

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
597
597
*/
598
598
 
599
599
void init_io_cache_share(IO_CACHE *read_cache, IO_CACHE_SHARE *cshare,
600
 
                         IO_CACHE *write_cache, uint num_threads)
 
600
                         IO_CACHE *write_cache, uint32_t num_threads)
601
601
{
602
602
  assert(num_threads > 1);
603
603
  assert(read_cache->type == READ_CACHE);
649
649
void remove_io_thread(IO_CACHE *cache)
650
650
{
651
651
  IO_CACHE_SHARE *cshare= cache->share;
652
 
  uint total;
 
652
  uint32_t total;
653
653
 
654
654
  /* If the writer goes, it needs to flush the write cache. */
655
655
  if (cache == cshare->source_cache)