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