~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mf_keycache.cc

  • Committer: Monty Taylor
  • Date: 2009-05-24 18:17:38 UTC
  • mto: This revision was merged to the branch mainline in revision 1039.
  • Revision ID: mordred@inaugust.com-20090524181738-01rwzxpwrqe92erb
Fixed some no-inline warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
802
802
/*
803
803
  Unlink a block from the chain of dirty/clean blocks
804
804
*/
805
 
static inline void unlink_changed(BLOCK_LINK *block)
 
805
static void unlink_changed(BLOCK_LINK *block)
806
806
{
807
807
  assert(block->prev_changed && *block->prev_changed == block);
808
808
  if (block->next_changed)
817
817
  Link a block into the chain of dirty/clean blocks
818
818
*/
819
819
 
820
 
static inline void link_changed(BLOCK_LINK *block, BLOCK_LINK **phead)
 
820
static void link_changed(BLOCK_LINK *block, BLOCK_LINK **phead)
821
821
{
822
822
  assert(!block->next_changed);
823
823
  assert(!block->prev_changed);