cleanup pid file on orderly exit.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6559 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2007-12-07 02:03:55 +00:00
parent 70a19cee9e
commit 6bad7635dd

View File

@ -214,6 +214,7 @@ int main(int argc, char *argv[])
int known_opt;
int high_prio = 0;
switch_core_flag_t flags = SCF_USE_SQL;
int status;
#ifdef WIN32
SERVICE_TABLE_ENTRY dispatchTable[] = {
@ -428,11 +429,16 @@ int main(int argc, char *argv[])
}
fprintf(f, "%d", pid = getpid());
fclose(f);
fflush(f);
switch_core_runtime_loop(nc);
return switch_core_destroy();
status = switch_core_destroy();
fclose(f);
unlink(pid_path);
return status;
}
/* For Emacs: