Commit 6c43cdf4 authored by Robert Schmidt's avatar Robert Schmidt

Hack to prevent segfault

parent 486e9e23
...@@ -450,7 +450,7 @@ extern "C" { ...@@ -450,7 +450,7 @@ extern "C" {
void itti_wait_tasks_end(void) { void itti_wait_tasks_end(void) {
shutting_down = false; shutting_down = false;
signal(SIGTERM, catch_sigterm); signal(SIGTERM, catch_sigterm);
signal(SIGINT, catch_sigterm); //signal(SIGINT, catch_sigterm);
while (! shutting_down) while (! shutting_down)
{ {
sleep(24 * 3600); sleep(24 * 3600);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment