This commit is contained in:
Adrian Miriuta 2021-04-02 20:38:37 +02:00
parent c33738a320
commit 5ef7841288
1 changed files with 4 additions and 4 deletions

View File

@ -5623,21 +5623,21 @@ static void sigHandler(int signum)
case SIGCHLD: case SIGCHLD:
/* Used to notify threads of events */ /* Used to notify threads of events */
break; break;
/*
default: default:
DBG(DBG_ALWAYS, "Unhandled signal %d, terminating\n", signum); DBG(DBG_ALWAYS, "Unhandled signal %d, terminating\n", signum);
gpioTerminate(); gpioTerminate();
exit(-1); exit(-1);*/
} }
} }
} }
else else
{ {
/* exit */ /* exit */
/*
DBG(DBG_ALWAYS, "Unhandled signal %d, terminating\n", signum); DBG(DBG_ALWAYS, "Unhandled signal %d, terminating\n", signum);
gpioTerminate(); gpioTerminate();
exit(-1); exit(-1);*/
} }
} }