提交 9ebb6f82 authored 作者: Mike Jerris's avatar Mike Jerris

Merge pull request #282 in FS/freeswitch from ~CHEWI/freeswitch:feature/FS-7645-ctrl-c to master

* commit '69ac02bb':
  FS-7645: Allow Ctrl+C (SIGINT) when running in foreground without console (-nf -nc)
...@@ -1196,6 +1196,10 @@ int main(int argc, char *argv[]) ...@@ -1196,6 +1196,10 @@ int main(int argc, char *argv[])
} }
#endif #endif
if (nc && nf) {
signal(SIGINT, handle_SIGILL);
}
switch_core_runtime_loop(nc); switch_core_runtime_loop(nc);
destroy_status = switch_core_destroy(); destroy_status = switch_core_destroy();
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论