forked from Mirrors/freeswitch
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:
parent
70a19cee9e
commit
6bad7635dd
10
src/switch.c
10
src/switch.c
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user