~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-08-18 15:47:04 UTC
  • mto: This revision was merged to the branch mainline in revision 352.
  • Revision ID: brian@tangent.org-20080818154704-5oq0bzplzve3k947
Removed dead/not used code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
432
432
pthread_key(MEM_ROOT**,THR_MALLOC);
433
433
pthread_key(THD*, THR_THD);
434
434
pthread_mutex_t LOCK_mysql_create_db, LOCK_open, LOCK_thread_count,
435
 
                LOCK_mapped_file, LOCK_status, LOCK_global_read_lock,
 
435
                LOCK_status, LOCK_global_read_lock,
436
436
                LOCK_error_log, LOCK_uuid_generator,
437
437
                LOCK_global_system_variables,
438
438
                LOCK_user_conn, LOCK_slave_list, LOCK_active_mi,
916
916
  (void) pthread_mutex_destroy(&LOCK_lock_db);
917
917
  (void) pthread_mutex_destroy(&LOCK_open);
918
918
  (void) pthread_mutex_destroy(&LOCK_thread_count);
919
 
  (void) pthread_mutex_destroy(&LOCK_mapped_file);
920
919
  (void) pthread_mutex_destroy(&LOCK_status);
921
920
  (void) pthread_mutex_destroy(&LOCK_error_log);
922
921
  (void) pthread_mutex_destroy(&LOCK_user_conn);
2285
2284
  (void) pthread_mutex_init(&LOCK_lock_db,MY_MUTEX_INIT_SLOW);
2286
2285
  (void) pthread_mutex_init(&LOCK_open, NULL);
2287
2286
  (void) pthread_mutex_init(&LOCK_thread_count,MY_MUTEX_INIT_FAST);
2288
 
  (void) pthread_mutex_init(&LOCK_mapped_file,MY_MUTEX_INIT_SLOW);
2289
2287
  (void) pthread_mutex_init(&LOCK_status,MY_MUTEX_INIT_FAST);
2290
2288
  (void) pthread_mutex_init(&LOCK_error_log,MY_MUTEX_INIT_FAST);
2291
2289
  (void) pthread_mutex_init(&LOCK_user_conn, MY_MUTEX_INIT_FAST);