mirror of
https://github.com/signalwire/freeswitch.git
synced 2026-07-04 19:31:56 +00:00
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:
+8
-2
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user