~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_panic.c

  • Committer: Jay Pipes
  • Date: 2008-07-16 16:14:22 UTC
  • mto: This revision was merged to the branch mainline in revision 182.
  • Revision ID: jay@mysql.com-20080716161422-fy1bl8o5q7m8kglq
Removed all DBUG symbols from heap storage engine

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
int hp_panic(enum ha_panic_function flag)
22
22
{
23
23
  LIST *element,*next_open;
24
 
  DBUG_ENTER("hp_panic");
25
24
 
26
25
  pthread_mutex_lock(&THR_LOCK_heap);
27
26
  for (element=heap_open_list ; element ; element=next_open)
52
51
    }
53
52
  }
54
53
  pthread_mutex_unlock(&THR_LOCK_heap);
55
 
  DBUG_RETURN(0);
 
54
  return(0);
56
55
} /* hp_panic */