~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_panic.c

  • Committer: Brian Aker
  • Date: 2008-07-07 14:25:25 UTC
  • mto: (77.1.25 codestyle)
  • mto: This revision was merged to the branch mainline in revision 82.
  • Revision ID: brian@tangent.org-20080707142525-xzy2nl3ie2ebwfln
LL() cleanup

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");
24
25
 
25
26
  pthread_mutex_lock(&THR_LOCK_heap);
26
27
  for (element=heap_open_list ; element ; element=next_open)
51
52
    }
52
53
  }
53
54
  pthread_mutex_unlock(&THR_LOCK_heap);
54
 
  return(0);
 
55
  DBUG_RETURN(0);
55
56
} /* hp_panic */