misc: don't os_exit(1) causing core on SIGINT
It's not typical for a program to core when it receives a SIGINT, so
keep this from happening.
Type: fix
Signed-off-by: Christian E. Hopps <chopps@chopps.org>
Change-Id: I2c15985a57e6ea898ff05c4001e4b30b41154eba
(cherry picked from commit 10a8bda37e
)
This commit is contained in:

committed by
Andrew Yourtchenko

parent
c7e6b50fdd
commit
c9563e60fe
@ -180,7 +180,11 @@ unix_signal_handler (int signum, siginfo_t * si, ucontext_t * uc)
|
|||||||
/* have to remove SIGABRT to avoid recursive - os_exit calling abort() */
|
/* have to remove SIGABRT to avoid recursive - os_exit calling abort() */
|
||||||
unsetup_signal_handlers (SIGABRT);
|
unsetup_signal_handlers (SIGABRT);
|
||||||
|
|
||||||
os_exit (1);
|
/* os_exit(1) causes core generation, do not do this for SIGINT */
|
||||||
|
if (signum == SIGINT)
|
||||||
|
os_exit (0);
|
||||||
|
else
|
||||||
|
os_exit (1);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
clib_warning ("%s", syslog_msg);
|
clib_warning ("%s", syslog_msg);
|
||||||
|
Reference in New Issue
Block a user