~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2009-05-23 16:15:00 UTC
  • mto: This revision was merged to the branch mainline in revision 1038.
  • Revision ID: brian@gaz-20090523161500-nldnoav8b7x1iz1b
Remove locks around my_open(). Open file counts are now "best effort" (not
that they were ever exact, since Innodb didn't use the calls).

Show diffs side-by-side

added added

removed removed

Lines of Context:
586
586
  delete_elements(&key_caches, (void (*)(const char*, unsigned char*)) free_key_cache);
587
587
  multi_keycache_free();
588
588
  free_status_vars();
589
 
  my_free_open_file_info();
590
589
  if (defaults_argv)
591
590
    free_defaults(defaults_argv);
592
591
  free(drizzle_tmpdir);
1424
1423
  get_options(&defaults_argc, defaults_argv);
1425
1424
  set_server_version();
1426
1425
 
1427
 
 
1428
 
  /* connections and databases needs lots of files */
1429
 
  (void) my_set_max_open_files(0xFFFFFFFF);
1430
 
 
1431
1426
  current_pid=(ulong) getpid();         /* Save for later ref */
1432
1427
  init_time();                          /* Init time-functions (read zone) */
1433
1428