~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/main.cc

  • Committer: Monty Taylor
  • Date: 2010-09-30 03:17:49 UTC
  • mto: (1819.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1820.
  • Revision ID: mordred@inaugust.com-20100930031749-1gaypmna4y78cvrl
Replaced pid-file with fs::path.

Show diffs side-by-side

added added

removed removed

Lines of Context:
318
318
    select_thread_in_use=0;
319
319
    (void) pthread_kill(signal_thread, SIGTERM);
320
320
 
321
 
    (void) unlink(pidfile_name);        // Not needed anymore
 
321
    (void) unlink(pid_file.file_string().c_str());      // Not needed anymore
322
322
 
323
323
    exit(1);
324
324
  }