vlib: leave SIGCONT signal with its default handler
Systemd always sends SIGCONT after KillSignal, to ensure that even suspended tasks can be terminated cleanly. However, the default action of SIGCONT handler in VPP such as unix_signal_handler() is process termination with coredump, what is not really desired. So, leave it alike SIGSTOP with its default handler. Type: feature Signed-off-by: Vladislav Grishenko <themiron@yandex-team.ru> Change-Id: I54c06d21669ec3c709322d746db9e28448c31bb8
This commit is contained in:

committed by
Damjan Marion

parent
7f9256e31c
commit
8486283cd5
@ -267,6 +267,7 @@ setup_signal_handlers (void)
|
||||
/* these signals take the default action */
|
||||
case SIGABRT:
|
||||
case SIGKILL:
|
||||
case SIGCONT:
|
||||
case SIGSTOP:
|
||||
case SIGUSR1:
|
||||
case SIGUSR2:
|
||||
|
Reference in New Issue
Block a user