~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_extra.c

  • Committer: Brian Aker
  • Date: 2008-07-18 20:10:26 UTC
  • mfrom: (51.3.29 remove-dbug)
  • Revision ID: brian@tangent.org-20080718201026-tto5golt0xhwqe4a
Merging in Jay's final patch on dbug.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
int heap_extra(register HP_INFO *info, enum ha_extra_function function)
30
30
{
31
 
  DBUG_ENTER("heap_extra");
32
 
 
33
31
  switch (function) {
34
32
  case HA_EXTRA_RESET_STATE:
35
33
    heap_reset(info);
46
44
  default:
47
45
    break;
48
46
  }
49
 
  DBUG_RETURN(0);
 
47
  return(0);
50
48
} /* heap_extra */
51
49
 
52
50