~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/ha_myisam.cc

  • Committer: Brian Aker
  • Date: 2008-11-22 03:37:48 UTC
  • Revision ID: brian@tangent.org-20081122033748-tqraexv8qb2qal4h
Removed mutex which are myisam from global to just engine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#include <drizzled/field/timestamp.h>
32
32
 
33
33
ulong myisam_recover_options= HA_RECOVER_NONE;
 
34
pthread_mutex_t THR_LOCK_myisam= PTHREAD_MUTEX_INITIALIZER;
34
35
 
35
36
/* bits in myisam_recover_options */
36
37
const char *myisam_recover_names[] =
1789
1790
 
1790
1791
int myisam_deinit(void *hton __attribute__((unused)))
1791
1792
{
 
1793
  pthread_mutex_destroy(&THR_LOCK_myisam);
 
1794
 
1792
1795
  return mi_panic(HA_PANIC_CLOSE);
1793
1796
}
1794
1797