~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_panic.c

  • Committer: Monty Taylor
  • Date: 2008-07-01 14:33:36 UTC
  • mto: (28.1.12 backport_patch)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: monty@inaugust.com-20080701143336-8uihm7dhpu92rt0q
Somehow missed moving password.c. Duh.

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 */