~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-08-01 19:01:50 UTC
  • Revision ID: brian@tangent.org-20080801190150-003gpp2343cn7cfz
Removed final trace of crypt() lock.

Show diffs side-by-side

added added

removed removed

Lines of Context:
431
431
pthread_mutex_t LOCK_mysql_create_db, LOCK_open, LOCK_thread_count,
432
432
                LOCK_mapped_file, LOCK_status, LOCK_global_read_lock,
433
433
                LOCK_error_log, LOCK_uuid_generator,
434
 
                LOCK_crypt,
435
434
                LOCK_global_system_variables,
436
435
                LOCK_user_conn, LOCK_slave_list, LOCK_active_mi,
437
436
                LOCK_connection_count;
915
914
  (void) pthread_mutex_destroy(&LOCK_mapped_file);
916
915
  (void) pthread_mutex_destroy(&LOCK_status);
917
916
  (void) pthread_mutex_destroy(&LOCK_error_log);
918
 
  (void) pthread_mutex_destroy(&LOCK_crypt);
919
917
  (void) pthread_mutex_destroy(&LOCK_user_conn);
920
918
  (void) pthread_mutex_destroy(&LOCK_connection_count);
921
919
  (void) pthread_mutex_destroy(&LOCK_rpl_status);
2232
2230
  (void) pthread_mutex_init(&LOCK_mapped_file,MY_MUTEX_INIT_SLOW);
2233
2231
  (void) pthread_mutex_init(&LOCK_status,MY_MUTEX_INIT_FAST);
2234
2232
  (void) pthread_mutex_init(&LOCK_error_log,MY_MUTEX_INIT_FAST);
2235
 
  (void) pthread_mutex_init(&LOCK_crypt,MY_MUTEX_INIT_FAST);
2236
2233
  (void) pthread_mutex_init(&LOCK_user_conn, MY_MUTEX_INIT_FAST);
2237
2234
  (void) pthread_mutex_init(&LOCK_active_mi, MY_MUTEX_INIT_FAST);
2238
2235
  (void) pthread_mutex_init(&LOCK_global_system_variables, MY_MUTEX_INIT_FAST);